Updated on 2026-08-14

This commit is contained in:
Tangem 2021-04-07 15:46:24 +03:00
parent 2b354a9a4e
commit 9abf64d69a

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()