Fix tag search from selecting tags

This commit is contained in:
Jerry
2024-04-06 12:31:00 +08:00
parent 85e8f17511
commit d4bb7f688c

View File

@@ -30,7 +30,7 @@ FutureOr<void> tagBookmarksRequest(TagBookmarksRequestRef ref, Tag? tag, String?
} }
final bookmarksResult = await ref.read(apiClientProvider)!.fetchBookmarks( final bookmarksResult = await ref.read(apiClientProvider)!.fetchBookmarks(
q: tag != null ? tag.name : tagResult!.content!.name, q: tag != null ? "#${tag.name}" : tagResult!.content!.name,
limit: limit, limit: limit,
offset: 0, offset: 0,
); );