From c02a615c9ee7c7752f4a33cf875f1791ce41ef71 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 25 Feb 2026 12:24:29 -0800 Subject: [PATCH] Feat: Increase daily search rate limit to 35 --- functions/[[path]].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/[[path]].js b/functions/[[path]].js index aac7747..cc25b3c 100644 --- a/functions/[[path]].js +++ b/functions/[[path]].js @@ -128,7 +128,7 @@ export async function onRequest(context) { })); } - if (count > 15) { + if (count > 35) { context.waitUntil(notify(env, { title: "Rate Limit Hit", message: `IP ${ip} hit limit for: ${query}`, tags: "warning,no_entry", priority: 2 })); return env.ASSETS.fetch(new Request(new URL("/limit.webp", url.origin))); }