Change default streak window to 36 hours

This commit is contained in:
Alex Gleason 2025-02-07 11:54:47 -06:00
parent 46558a97e4
commit ea8ef09045
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -359,7 +359,7 @@ class Conf {
};
/** Maximum time between events before a streak is broken, *in seconds*. */
static get streakWindow(): number {
return Number(Deno.env.get('STREAK_WINDOW') || 86400);
return Number(Deno.env.get('STREAK_WINDOW') || 129600);
}
}