From 05836456136a5dbf824d7e2bc722def95cf2c55a Mon Sep 17 00:00:00 2001 From: Yanlong Wang Date: Thu, 16 May 2024 00:42:30 +0800 Subject: [PATCH] fix: noCache in search --- backend/functions/src/cloud-functions/searcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/functions/src/cloud-functions/searcher.ts b/backend/functions/src/cloud-functions/searcher.ts index 08b558f..c4a3dff 100644 --- a/backend/functions/src/cloud-functions/searcher.ts +++ b/backend/functions/src/cloud-functions/searcher.ts @@ -212,7 +212,7 @@ export class SearcherHost extends RPCHost { const r = await this.cachedWebSearch({ q: searchQuery, count: 5 - }); + }, noCache); const it = this.fetchSearchResults(customMode, r.web.results, crawlOpts, pageCacheTolerance);