mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-23 12:09:43 +00:00
*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:
parent
f2ac23ddc5
commit
6708f512b8
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user