Merge pull request #9 from tiltshiftfocus/master
Fix tag search from selecting tags
This commit is contained in:
@@ -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,
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user