mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +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)
|
.map((e) => e.file.fdId)
|
||||||
.toList(),
|
.toList(),
|
||||||
actualIndex,
|
actualIndex,
|
||||||
collectionId: state.collection.id,
|
collectionId: state.collection.isDynamicCollection
|
||||||
|
? null
|
||||||
|
: state.collection.id,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue