From 7ac9ef3fdcb7968251434e13bd38cbe8e6e65ebd Mon Sep 17 00:00:00 2001 From: Sefinek Date: Sun, 8 Sep 2024 21:31:36 +0200 Subject: [PATCH] REPORTED_IP_COOLDOWN_MS 6h --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index f4e4cff..8e78835 100644 --- a/config.js +++ b/config.js @@ -4,7 +4,7 @@ const CYCLE_INTERVAL = process.env.NODE_ENV === 'production' ? 60 * 60 * 1000 : // The minimum time that must pass after reporting an IP address before it can be reported again. // The required time is >= 15 minutes, according to AbuseIPDB API limits. -const REPORTED_IP_COOLDOWN_MS = 7 * 60 * 60 * 1000; // 7h +const REPORTED_IP_COOLDOWN_MS = 6 * 60 * 60 * 1000; // 6h // The maximum URI length that can be reported to AbuseIPDB. // If Cloudflare returns a longer URI, the API request will fail.