mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 08:46:18 +01:00
Fix photos not showing in viewer if belonging to a dynamic collection
This commit is contained in:
parent
f4c588fd9e
commit
8e823e3b33
1 changed files with 3 additions and 1 deletions
|
@ -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,
|
||||
),
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue