mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
fix: don't resolve search when not signed in
This commit is contained in:
parent
f467958cd9
commit
269fc30afd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue