Spaces:
Build error
Build error
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 |
|