Updated on 2026-08-14

This commit is contained in:
Tangem 2021-04-07 14:10:15 +00:00
commit bdb96851f6

View file

@ -133,8 +133,8 @@ class AppRatingLaunchObserver(
if (!userWasInteractWithRating()) {
val diff = Calendar.getInstance().timeInMillis - fundsDate.timeInMillis
val diffInDays = diff / (100 * 60 * 60 * 24)
return launchCounts >= firstShowing && diffInDays >= firstShowing
val diffInDays = diff / (1000 * 60 * 60 * 24)
return launchCounts >= getCounterOfNextShowing() && diffInDays >= firstShowing
}
val nextShowing = getCounterOfNextShowing()