increase count

This commit is contained in:
sky
2025-11-22 15:27:03 -05:00
parent 80d6e4724a
commit e2a790fa99

View File

@ -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();
}