From 70cc6d4065e996598a38bd699f05a942e94b9a7c Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 22 Mar 2026 08:16:37 +0100 Subject: [PATCH] sharing: code review --- radicale/app/get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/get.py b/radicale/app/get.py index 2ada5c26..9accb8ce 100644 --- a/radicale/app/get.py +++ b/radicale/app/get.py @@ -112,7 +112,7 @@ class ApplicationPartGet(ApplicationBase): if not item.tag: return (httputils.NOT_ALLOWED if limited_access else httputils.DIRECTORY_LISTING) - if self._sharing._enabled and share and share['ShareType'] == "bday": + if share and share['ShareType'] == "bday": content_type = xmlutils.MIMETYPES["VCALENDAR"] else: content_type = xmlutils.MIMETYPES[item.tag]