mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
Reduce limit to 1000
This commit is contained in:
parent
02205893aa
commit
b3fc605f1f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user