// ask for reviews only when a significant number of files have been processed

This commit is contained in:
Reinhard Pointner 2017-03-08 02:09:08 +08:00
parent 1b693dfa14
commit 0f63e83549
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public enum SupportDialog {
}
// ask for reviews only when a significant number of files have been processed
if (isAppStore() && sessionRenameCount <= 10 || totalRenameCount <= 5000) {
if (isAppStore() && (sessionRenameCount < 5 || totalRenameCount < 5000)) {
return false;
}