Fix increment mapping

pull/6333/head
Greg Finley 2020-04-06 22:49:03 -07:00
parent f8339aaa27
commit 9849d2af71
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ case class Hook(
val isAuth = user.nonEmpty
val hasIncrement = if (clock.incrementSeconds > 0) 0 else 1
val hasIncrement = if (clock.incrementSeconds > 0) 1 else 0
def compatibleWith(h: Hook) =
isAuth == h.isAuth &&