From b3fc605f1fd557093f7406db196a5f9d031cefb9 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 2 May 2016 07:33:35 +0800 Subject: [PATCH] Reduce limit to 1000 --- 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 f73d80cd..aa0ce7f2 100644 --- a/source/net/filebot/ui/SupportDialog.java +++ b/source/net/filebot/ui/SupportDialog.java @@ -108,8 +108,8 @@ public enum SupportDialog { public static void maybeShow() { int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize(); - // show donation / review reminders to power users (more than 2000 renames) - if (renameCount > 2000 && Math.random() >= 0.777) { + // show donation / review reminders to power users (more than 1000 renames) + if (renameCount >= 1000 && Math.random() >= 0.777) { if (isAppStore()) { AppStoreReview.show(renameCount); } else {