diff --git a/core/src/main/groovy/com/muwire/core/update/UpdateClient.groovy b/core/src/main/groovy/com/muwire/core/update/UpdateClient.groovy index 0c753092..a9de2d66 100644 --- a/core/src/main/groovy/com/muwire/core/update/UpdateClient.groovy +++ b/core/src/main/groovy/com/muwire/core/update/UpdateClient.groovy @@ -145,7 +145,7 @@ class UpdateClient { eventBus.publish(new UpdateAvailableEvent(version : payload.version, signer : payload.signer, infoHash : payload.infoHash)) } else { log.info("new version $payload.version available") - updateInfoHash = new InfoHash(Base64.decode($payload.infoHash)) + updateInfoHash = new InfoHash(Base64.decode(payload.infoHash)) if (fileManager.rootToFiles.containsKey(updateInfoHash)) eventBus.publish(new UpdateDownloadedEvent(version : payload.version, signer : payload.signer)) else {