lets show the Donate dialog every 50 launches, down from 100
This commit is contained in:
parent
61c0c3f29e
commit
4b39eb2bc3
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ fun Activity.storeStoragePaths() {
|
|||
}).start()
|
||||
|
||||
baseConfig.appRunCount++
|
||||
if (!isThankYouInstalled() && (baseConfig.appRunCount % 100 == 0)) {
|
||||
if (!isThankYouInstalled() && (baseConfig.appRunCount % 50 == 0)) {
|
||||
DonateDialog(this)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue