Skip to content

Commit

Permalink
Merge pull request #59 from Staketab/dev
Browse files Browse the repository at this point in the history
fix img url creator
  • Loading branch information
MrFoxogen committed May 15, 2024
2 parents a9cfd68 + 950b8d7 commit eadf020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void doFilter(ServletRequest servletRequest, ServletResponse servletRespo
return;
}

log.debug("Trying authorize with x-api-key: " + key);
log.debug("Trying authorize with x-api-key: {}", key);
HttpServletResponse resp = (HttpServletResponse) servletResponse;

Optional<ApiKeyEntity> apiKey = getApiKey(key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
@RequiredArgsConstructor
public class ZkCloudWorkerServiceImpl implements ZkCloudWorkerService {

private static final String PATH_TO_IPFS_ZK_CLOUD_WORKER = "/ipfs/%s";
private static final String PATH_TO_IPFS_ZK_CLOUD_WORKER = "ipfs/%s";

@Value("${zk-cloud-worker.mns-contract}")
private String mnsContract;
Expand Down

0 comments on commit eadf020

Please sign in to comment.