Fixes too strict timing constraints for new posts.

pull/812/head
Vitor Pamplona 2024-03-19 19:55:41 -04:00
rodzic 87fafd9451
commit d15beb2ae5
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -35,7 +35,7 @@ class FilterByListParams(
val isHiddenList: Boolean,
val followLists: Account.LiveFollowLists?,
val hiddenLists: Account.LiveHiddenUsers,
val now: Long = TimeUtils.now(),
val now: Long = TimeUtils.oneMinuteFromNow(),
) {
fun isNotHidden(userHex: String) = !(hiddenLists.hiddenUsers.contains(userHex) || hiddenLists.spammers.contains(userHex))

Wyświetl plik

@ -34,6 +34,8 @@ object TimeUtils {
fun now() = System.currentTimeMillis() / 1000
fun oneMinuteFromNow() = now() + ONE_MINUTE
fun oneMinuteAgo() = now() - ONE_MINUTE
fun fiveMinutesAgo() = now() - FIVE_MINUTES