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 23:04:55 +03:00 committed by GitHub
parent 6f031c2839
commit aacf99d82a

View File

@ -70,8 +70,9 @@ 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 = offender.expires_at + opts.window * 1000;
// each block violation pushes the expiry one full window further
reset = new Date(reset.getTime() + opts.window * 1000);
offender.expires_at = new Date(offender.expires_at.getTime() + opts.window * 1000);
resetAfterMs = reset - Date.now();
resetAfterSec = Math.ceil(resetAfterMs / 1000);