fix: don't resolve search when not signed in

This commit is contained in:
三咲智子 2023-01-03 11:25:02 +08:00
parent f467958cd9
commit 269fc30afd
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -25,7 +25,7 @@ export function useSearch(query: MaybeRef<string>, options?: UseSearchOptions) {
* Based on the source it seems like modifying the params when calling next would result in a new search,
* but that doesn't seem to be the case. So instead we just create a new paginator with the new params.
*/
paginator = masto.search({ q: unref(query), resolve: true, type: unref(options?.type) })
paginator = masto.search({ q: unref(query), resolve: !!currentUser.value, type: unref(options?.type) })
const nextResults = await paginator.next()
done.value = nextResults.done || false