LastLoginAtCooldown from 8 hours to 1 hour

This commit is contained in:
Noah Petherbridge 2023-09-13 22:58:00 -07:00
parent de30f5e952
commit 5ceeeb5fee

View File

@ -64,7 +64,7 @@ const (
ContactRateLimitCooldown = 2 * time.Minute ContactRateLimitCooldown = 2 * time.Minute
// How frequently to refresh LastLoginAt since sessions are long-lived. // How frequently to refresh LastLoginAt since sessions are long-lived.
LastLoginAtCooldown = 8 * time.Hour LastLoginAtCooldown = time.Hour
// Chat room status refresh interval. // Chat room status refresh interval.
ChatStatusRefreshInterval = 30 * time.Second ChatStatusRefreshInterval = 30 * time.Second