fix: exclude unreviewed hashtags from autocomplete (#873)

zio/stable
Ivan Demchuk 2023-01-08 15:34:53 +02:00 committed by GitHub
parent 7e17bdfd83
commit 95a875f47b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -29,7 +29,13 @@ export const HashtagSuggestion: Partial<SuggestionOptions> = {
if (query.length === 0)
return []
const paginator = useMasto().v2.search({ q: query, type: 'hashtags', limit: 25, resolve: true })
const paginator = useMasto().v2.search({
q: query,
type: 'hashtags',
limit: 25,
resolve: false,
excludeUnreviewed: true,
})
const results = await paginator.next()
return results.value.hashtags