From aa038cad0181d4cefd8434ce23afc12ba7127a2b Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 22 Feb 2026 12:49:58 +0100 Subject: [PATCH] use optional permissions filter --- radicale/app/proppatch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radicale/app/proppatch.py b/radicale/app/proppatch.py index caaf7b7a..cbc5a711 100644 --- a/radicale/app/proppatch.py +++ b/radicale/app/proppatch.py @@ -75,7 +75,8 @@ class ApplicationPartProppatch(ApplicationBase): def do_PROPPATCH(self, environ: types.WSGIEnviron, base_prefix: str, path: str, user: str, remote_host: str, remote_useragent: str) -> types.WSGIResponse: """Manage PROPPATCH request.""" - access = Access(self._rights, user, path) + permissions_filter = None + access = Access(self._rights, user, path, permissions_filter) if not access.check("w"): return httputils.NOT_ALLOWED try: