Merge pull request #9 from tiltshiftfocus/master

Fix tag search from selecting tags
This commit is contained in:
Juan Gilsanz Polo
2024-04-06 14:49:58 +02:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ FutureOr<void> tagBookmarksRequest(TagBookmarksRequestRef ref, Tag? tag, String?
}
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,
offset: 0,
);