search-fix

This commit is contained in:
Untone 2024-06-26 11:23:21 +03:00
parent e38fce68c6
commit 2bc87b5e99

View File

@ -69,7 +69,7 @@ export const loadShoutsSearch = (options: QueryLoad_Shouts_SearchArgs) => {
const page = `${options.offset || 0}-${(options?.limit || 0) + (options.offset || 0)}` const page = `${options.offset || 0}-${(options?.limit || 0) + (options.offset || 0)}`
return cache(async () => { return cache(async () => {
const resp = await defaultClient.query(loadShoutsSearchQuery, { ...options }).toPromise() const resp = await defaultClient.query(loadShoutsSearchQuery, { ...options }).toPromise()
const result = resp?.data?.get_shout as Shout const result = resp?.data?.load_shouts_search as Shout
if (result) return result if (result) return result
}, `search-${options.text}-${page}`) }, `search-${options.text}-${page}`)
} }