fix: 🐛 don't convert time since epoch for ratelimit
https://calckey.social/notes/9gkasnzglmi07rpa
This commit is contained in:
parent
0015afaca8
commit
5343c14184
|
@ -79,7 +79,7 @@ export const limiter = (
|
|||
if (info.remaining === 0) {
|
||||
reject({
|
||||
message: "RATE_LIMIT_EXCEEDED",
|
||||
remainingTime: convertMilliseconds(info.resetMs),
|
||||
remainingTime: convertMilliseconds(info.resetMs - Date.now()),
|
||||
});
|
||||
} else {
|
||||
ok();
|
||||
|
|
Loading…
Reference in New Issue