Merge branch 'fix/string-format' into 'master'

Fix: string format, empty arg

See merge request sheepitrenderfarm/client!305
This commit is contained in:
Laurent Clouet
2024-06-01 14:39:18 +00:00

View File

@@ -120,7 +120,7 @@ public class DownloadManager {
this.log.debug("DownloadManager::downloadActual problem with Server.HTTPGetFile (return: " + ret + ") removing local file (path: " + this.local_target + ")"); this.log.debug("DownloadManager::downloadActual problem with Server.HTTPGetFile (return: " + ret + ") removing local file (path: " + this.local_target + ")");
} }
else if (md5_check == false) { else if (md5_check == false) {
this.gui.error(String.format("Verification of downloaded %s has failed. Retrying now")); this.gui.error("Verification of downloaded file has failed. Retrying now");
this.log.debug("DownloadManager::downloadActual problem with Client::checkFile mismatch on md5, removing local file (path: " + this.local_target + ")"); this.log.debug("DownloadManager::downloadActual problem with Client::checkFile mismatch on md5, removing local file (path: " + this.local_target + ")");
} }