Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix: resolve when searching on Mastodon (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 authored Nov 5, 2023
1 parent b1bb6cc commit b6c6fc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ abstract class SharedMastodonAdapter<T extends MastodonClient>

@override
Future<SearchResults> search(String query) async {
final results = await client.search(query);
final results = await client.search(query, resolve: true);

return SearchResults(
users: results.accounts.map((a) => a.toKaiteki(instance)).toList(),
Expand Down

0 comments on commit b6c6fc3

Please sign in to comment.