From a34d191153a4f9ff8f67142321fb5e2a90272a20 Mon Sep 17 00:00:00 2001 From: edel-macias-cubix Date: Tue, 15 Apr 2025 21:23:52 -0600 Subject: [PATCH] Servers that return a quoted URL in their path will now be parsed correctly --- caldav/objects.py | 1 + 1 file changed, 1 insertion(+) diff --git a/caldav/objects.py b/caldav/objects.py index ff4026ec..e88725fd 100755 --- a/caldav/objects.py +++ b/caldav/objects.py @@ -312,6 +312,7 @@ def get_properties( exchange_path = path[:-1] else: exchange_path = path + "/" + properties = {unquote(k): v for k, v in properties.items()} if path in properties: rc = properties[path]