diff --git a/radicale/app/put.py b/radicale/app/put.py index 86e863ef..bd6db5ed 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -181,7 +181,8 @@ class ApplicationPartPut(ApplicationBase): def do_PUT(self, environ: types.WSGIEnviron, base_prefix: str, path: str, user: str, remote_host: str, remote_useragent: str) -> types.WSGIResponse: """Manage PUT 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: