mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix propfind exception if customProperties = null
This commit is contained in:
parent
8985c04af9
commit
2e67ea8ce0
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ class _Files {
|
|||
if (richWorkspace != null) {
|
||||
builder.element("nc:rich-workspace");
|
||||
}
|
||||
for (final p in customProperties) {
|
||||
for (final p in customProperties ?? []) {
|
||||
builder.element(p);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue