lets show the Donate dialog every 50 launches, down from 100

This commit is contained in:
tibbi 2017-11-18 21:58:34 +01:00
parent 61c0c3f29e
commit 4b39eb2bc3

View file

@ -70,7 +70,7 @@ fun Activity.storeStoragePaths() {
}).start()
baseConfig.appRunCount++
if (!isThankYouInstalled() && (baseConfig.appRunCount % 100 == 0)) {
if (!isThankYouInstalled() && (baseConfig.appRunCount % 50 == 0)) {
DonateDialog(this)
}
}