From 8e823e3b339301230026f247af8838bf3a71ddbe Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Mon, 16 Dec 2024 19:56:07 +0800 Subject: [PATCH] Fix photos not showing in viewer if belonging to a dynamic collection --- app/lib/widget/collection_browser/view.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/lib/widget/collection_browser/view.dart b/app/lib/widget/collection_browser/view.dart index f38b2f87..fd7e2bc7 100644 --- a/app/lib/widget/collection_browser/view.dart +++ b/app/lib/widget/collection_browser/view.dart @@ -78,7 +78,9 @@ class _ContentListBody extends StatelessWidget { .map((e) => e.file.fdId) .toList(), actualIndex, - collectionId: state.collection.id, + collectionId: state.collection.isDynamicCollection + ? null + : state.collection.id, ), ); },