This commit is contained in:
mr
2026-03-19 08:26:46 +01:00
parent 2108df5283
commit 46dee0a6cb

View File

@@ -82,7 +82,7 @@ type nodeBehavior struct {
}
func (nb *nodeBehavior) isBanned() bool {
return time.Now().Before(nb.bannedUntil)
return time.Now().UTC().Before(nb.bannedUntil)
}
func (nb *nodeBehavior) strike(n int) {