From e32e668f0da83d7915ed1c0261eeea12d4cc8156 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Tue, 10 May 2016 00:42:28 +0800 Subject: [PATCH] Set limit to 2000 --- source/net/filebot/ui/SupportDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/filebot/ui/SupportDialog.java b/source/net/filebot/ui/SupportDialog.java index cefc5a78..70e616e8 100644 --- a/source/net/filebot/ui/SupportDialog.java +++ b/source/net/filebot/ui/SupportDialog.java @@ -114,8 +114,8 @@ public enum SupportDialog { public static void maybeShow() { int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize(); - // show donation / review reminders to power users (more than 1000 renames) - if (renameCount >= 1000 && Math.random() >= 0.777) { + // show donation / review reminders to power users (more than 2000 renames) + if (renameCount >= 2000 && Math.random() >= 0.777) { if (isAppStore()) { AppStoreReview.show(renameCount); } else {