This commit is contained in:
Reinhard Pointner 2016-08-04 20:29:18 +08:00
parent df6e8bd182
commit a34882b4bf
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public enum SupportDialog {
int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize(); int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize();
int renameLimit = 1000; int renameLimit = 1000;
// show donation / review reminders to power users (more than 2000 renames) // show donation / review reminders to power users
if ((renameCount >= renameLimit && Math.random() >= 0.777) || (HistorySpooler.getInstance().getSessionHistory().totalSize() >= renameLimit)) { if ((renameCount >= renameLimit && Math.random() >= 0.777) || (HistorySpooler.getInstance().getSessionHistory().totalSize() >= renameLimit)) {
if (isAppStore()) { if (isAppStore()) {
AppStoreReview.show(renameCount); AppStoreReview.show(renameCount);