mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-24 16:04:43 +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) {
|
if (richWorkspace != null) {
|
||||||
builder.element("nc:rich-workspace");
|
builder.element("nc:rich-workspace");
|
||||||
}
|
}
|
||||||
for (final p in customProperties) {
|
for (final p in customProperties ?? []) {
|
||||||
builder.element(p);
|
builder.element(p);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue