1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

Reduce limit to 1000

This commit is contained in:
Reinhard Pointner 2016-05-02 07:33:35 +08:00
parent 02205893aa
commit b3fc605f1f

View File

@ -108,8 +108,8 @@ public enum SupportDialog {
public static void maybeShow() { public static void maybeShow() {
int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize(); int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize();
// show donation / review reminders to power users (more than 2000 renames) // show donation / review reminders to power users (more than 1000 renames)
if (renameCount > 2000 && Math.random() >= 0.777) { if (renameCount >= 1000 && Math.random() >= 0.777) {
if (isAppStore()) { if (isAppStore()) {
AppStoreReview.show(renameCount); AppStoreReview.show(renameCount);
} else { } else {