From 5c55a86f7727ff151e49f7be6e5197fbff660ad8 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 1 Mar 2026 06:38:05 +0100 Subject: [PATCH] sharing/propfind overlay bugfix --- radicale/app/propfind.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/radicale/app/propfind.py b/radicale/app/propfind.py index e4dc299c..64cb45f8 100644 --- a/radicale/app/propfind.py +++ b/radicale/app/propfind.py @@ -347,9 +347,10 @@ def xml_propfind_response( if tag_text is not None: if sharing: # map from overlay - if human_tag in sharing['Properties']: - if sharing['Properties'][human_tag] is not None: - tag_text = sharing['Properties'][human_tag] + if sharing['Properties']: + if human_tag in sharing['Properties']: + if sharing['Properties'][human_tag] is not None: + tag_text = sharing['Properties'][human_tag] element.text = tag_text else: is404 = True