1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-21 12:12:38 +02:00

Merge pull request #1671 from rezhajulio/patch-1

Fix malformed log on file already exist
This commit is contained in:
cyian-1756 2020-06-19 17:42:26 +00:00 committed by GitHub
commit d2947e9e4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ class DownloadFileThread extends Thread {
logger.info("[!] " + Utils.getLocalizedString("deleting.existing.file") + prettySaveAs);
saveAs.delete();
} else {
logger.info("[!] " + Utils.getLocalizedString("skipping") + url + " -- "
logger.info("[!] " + Utils.getLocalizedString("skipping") + " " + url + " -- "
+ Utils.getLocalizedString("file.already.exists") + ": " + prettySaveAs);
observer.downloadExists(url, saveAs);
return;