Set limit to 2000
This commit is contained in:
parent
be01e82589
commit
e32e668f0d
|
@ -114,8 +114,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 1000 renames)
|
// show donation / review reminders to power users (more than 2000 renames)
|
||||||
if (renameCount >= 1000 && Math.random() >= 0.777) {
|
if (renameCount >= 2000 && Math.random() >= 0.777) {
|
||||||
if (isAppStore()) {
|
if (isAppStore()) {
|
||||||
AppStoreReview.show(renameCount);
|
AppStoreReview.show(renameCount);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue