From 2ace2e6e8ca9e3082026d1a277c1ff016d8e587a Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 22 Feb 2026 12:31:36 +0100 Subject: [PATCH] use optional permissions filter --- radicale/app/get.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radicale/app/get.py b/radicale/app/get.py index 2eac58f1..848a4daf 100644 --- a/radicale/app/get.py +++ b/radicale/app/get.py @@ -76,7 +76,8 @@ class ApplicationPartGet(ApplicationBase): return httputils.redirect(location, client.MOVED_PERMANENTLY) # Dispatch /.web path to web module return self._web.get(environ, base_prefix, path, user) - access = Access(self._rights, user, path) + permissions_filter = None + access = Access(self._rights, user, path, permissions_filter) if not access.check("r") and "i" not in access.permissions: return httputils.NOT_ALLOWED with self._storage.acquire_lock("r", user):