1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-13 06:02:39 +01:00

Update RateLimit.ts

This commit is contained in:
Erkin Alp Güney 2022-04-24 21:49:04 +03:00 committed by GitHub
parent 8769bb2868
commit ea1f188cce

View File

@ -71,7 +71,7 @@ export default function rateLimit(opts: {
if (offender.blocked) {
const global = bucket_id === "global";
reset = reset + opts.window * 1000; // each block violation pushes the expiry one full window further
offender.expires_at += opts.window * 1000;
offender.expires_at = offender.expires_at + opts.window * 1000;
resetAfterMs = reset - Date.now();
resetAfterSec = Math.ceil(resetAfterMs / 1000);