fix: persist last_offense_time and reset offenses after 24h
last_offense_time was in-memory only — lost on restart, so the offense_reset_minutes check never fired after a reboot. Now persisted as LastOffenseAt FLOAT in UserState. On startup hydration, stale offenses (and warned flag) are auto-cleared if the reset window has passed. Bumped offense_reset_minutes from 2h to 24h. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -41,7 +41,7 @@ mention_scan:
|
||||
|
||||
timeouts:
|
||||
escalation_minutes: [30, 60, 120, 240] # Escalating timeout durations
|
||||
offense_reset_minutes: 120 # Reset offense counter after this much good behavior
|
||||
offense_reset_minutes: 1440 # Reset offense counter after this much good behavior (24h)
|
||||
warning_cooldown_minutes: 5 # Don't warn same user more than once per this window
|
||||
|
||||
messages:
|
||||
|
||||
Reference in New Issue
Block a user