From 509a1d726901586c999bd504cf4751faf771a2d0 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 14 Feb 2026 19:03:52 -0800 Subject: [PATCH] Fix: Update daily search rate limit to 15 --- functions/[[path]].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/[[path]].js b/functions/[[path]].js index defa9c8..cdd77dd 100644 --- a/functions/[[path]].js +++ b/functions/[[path]].js @@ -44,7 +44,7 @@ export async function onRequest(context) { const rateList = await env.DIRECT_IMG_RATE.list({ prefix: ratePrefix }); const count = rateList.keys.length; - if (count >= 25) { + if (count >= 15) { context.waitUntil(notify(env, { title: "Rate Limit Hit", message: `IP ${ip} reached limit for: ${query}`,