1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

~22% chance

This commit is contained in:
Reinhard Pointner 2017-02-04 01:55:36 +08:00
parent 1c66200aa3
commit cc97f05a9e

View File

@ -97,7 +97,7 @@ public enum SupportDialog {
}
// sometimes lucky if many files have been processed over time
return totalRenameCount >= 2000 * Math.pow(4, supportRevisionCount) && Math.random() >= 0.2;
return totalRenameCount >= 2000 * Math.pow(4, supportRevisionCount) && Math.random() >= 0.777;
}
public boolean show(int totalRenameCount, boolean first) {