Fixes too strict timing constraints for new posts.
This commit is contained in:
@@ -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))
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user