From 406dd41258be9899c10fac6d92d0c75b81b16fe0 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 23 Feb 2026 08:57:53 -0800 Subject: [PATCH] Feat: Increase search result count to 50 --- functions/[[path]].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/[[path]].js b/functions/[[path]].js index ebb5cad..c204edc 100644 --- a/functions/[[path]].js +++ b/functions/[[path]].js @@ -178,7 +178,7 @@ async function sha256(str) { } async function braveImageSearch(query, apiKey) { - const searchUrl = `https://api.search.brave.com/res/v1/images/search?q=${encodeURIComponent(query)}&count=10&safesearch=off`; + const searchUrl = `https://api.search.brave.com/res/v1/images/search?q=${encodeURIComponent(query)}&count=50&safesearch=off`; const res = await fetch(searchUrl, { headers: {