From 8e1a4cc4d517a610acd70c3e04410aa298b339c5 Mon Sep 17 00:00:00 2001 From: Victor Kirov Date: Mon, 28 Oct 2024 16:29:25 +0200 Subject: [PATCH] Remove double increment --- utils/axiosRateLimit.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/axiosRateLimit.ts b/utils/axiosRateLimit.ts index f427717a..102266f1 100644 --- a/utils/axiosRateLimit.ts +++ b/utils/axiosRateLimit.ts @@ -94,7 +94,5 @@ export class AxiosRateLimit { this.timeslotRequests++; setTimeout(this.onRequestTimerMet, this.perMilliseconds); - - this.timeslotRequests += 1; }; }