Set limit to 2000

This commit is contained in:
Reinhard Pointner 2016-05-10 00:42:28 +08:00
parent be01e82589
commit e32e668f0d
1 changed files with 2 additions and 2 deletions

View File

@ -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 {