From 2852ebdd9b8ecd31981842d2007bea0b53d14782 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 8 Mar 2026 12:18:48 +0100 Subject: [PATCH] sharing: check that Properties are not none --- radicale/sharing/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/sharing/__init__.py b/radicale/sharing/__init__.py index 49514353..4c034afa 100644 --- a/radicale/sharing/__init__.py +++ b/radicale/sharing/__init__.py @@ -944,7 +944,7 @@ class BaseSharing: elif Properties == {}: # empty, nothing to do pass - else: + elif share['Properties'] is not None: # replace properties for prop in share['Properties']: if logger.isEnabledFor(logging.DEBUG):