sharing/propfind overlay bugfix

This commit is contained in:
Peter Bieringer
2026-03-01 06:38:05 +01:00
parent a238b67613
commit 5c55a86f77

View File

@@ -347,9 +347,10 @@ def xml_propfind_response(
if tag_text is not None: if tag_text is not None:
if sharing: if sharing:
# map from overlay # map from overlay
if human_tag in sharing['Properties']: if sharing['Properties']:
if sharing['Properties'][human_tag] is not None: if human_tag in sharing['Properties']:
tag_text = sharing['Properties'][human_tag] if sharing['Properties'][human_tag] is not None:
tag_text = sharing['Properties'][human_tag]
element.text = tag_text element.text = tag_text
else: else:
is404 = True is404 = True