*Plugins: Fixes/Changes/Maintenance*

- FileCryptCc: fixed regression in new password handling RE ticket #IWGF2572-JUOG-5158DSGP

git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@49859 ebf7c1c2-ba36-0410-9fe8-c592906822b4

Former-commit-id: 6d5039bdf19e6fa1c9ed12174f1e00a1ce774cf8
This commit is contained in:
psp 2024-09-24 18:01:54 +00:00
parent f2ac23ddc5
commit 6708f512b8

View File

@ -509,9 +509,9 @@ public class FileCryptCc extends PluginForDecrypt {
/* Bad user input */
throw new DecrypterException(DecrypterException.PASSWORD);
}
if (!usedWrongPasswords.contains(passCode)) {
if (usedWrongPasswords.contains(passCode)) {
// no need to submit password that has already been tried!
logger.info("Skipping already tried password: " + passCode);
logger.info("Skipping user-entered already tried wrong password: " + passCode);
continue;
}
}