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, ), ); },