Fixes too strict timing constraints for new posts.

This commit is contained in:
Vitor Pamplona
2024-03-19 19:55:41 -04:00
parent 87fafd9451
commit d15beb2ae5
2 changed files with 3 additions and 1 deletions
@@ -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