Update Galleries

This commit is contained in:
2023-09-15 15:39:01 +08:00
parent 932c56a377
commit dae5e13bd8
6 changed files with 42 additions and 7 deletions

View File

@@ -55,7 +55,10 @@ final _router = GoRouter(
} catch (e) {
_routerLog.warning("Failed to load sortByGid from prefs:", e);
}
return GalleriesPage(sortByGid: sortByGid);
final tag = state.uri.queryParameters["tag"];
final uploader = state.uri.queryParameters["uploader"];
return GalleriesPage(
sortByGid: sortByGid, tag: tag, uploader: uploader);
}),
GoRoute(
path: GalleryPage.routeName,