nomagick commited on
Commit
0583645
·
unverified ·
1 Parent(s): 4556954

fix: noCache in search

Browse files
backend/functions/src/cloud-functions/searcher.ts CHANGED
@@ -212,7 +212,7 @@ export class SearcherHost extends RPCHost {
212
  const r = await this.cachedWebSearch({
213
  q: searchQuery,
214
  count: 5
215
- });
216
 
217
  const it = this.fetchSearchResults(customMode, r.web.results, crawlOpts, pageCacheTolerance);
218
 
 
212
  const r = await this.cachedWebSearch({
213
  q: searchQuery,
214
  count: 5
215
+ }, noCache);
216
 
217
  const it = this.fetchSearchResults(customMode, r.web.results, crawlOpts, pageCacheTolerance);
218