From e2a790fa99f2fc84c97f0de2036b444d16eb1dad Mon Sep 17 00:00:00 2001 From: sky Date: Sat, 22 Nov 2025 15:27:03 -0500 Subject: [PATCH] increase count --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1f50d20..26589d6 100644 --- a/index.js +++ b/index.js @@ -76,7 +76,7 @@ app.get("/check", async (req, res) => { const baseDomain = getBaseDomain(hostname); const { count } = domainCount.get({ $base: baseDomain }); - if (count >= 3) { + if (count >= 100) { return res.status(400).end(); }