diff --git a/radicale/app/head.py b/radicale/app/head.py index 99af526..b6178f6 100644 --- a/radicale/app/head.py +++ b/radicale/app/head.py @@ -27,4 +27,5 @@ class ApplicationPartHead(ApplicationPartGet, ApplicationBase): def do_HEAD(self, environ: types.WSGIEnviron, base_prefix: str, path: str, user: str) -> types.WSGIResponse: """Manage HEAD request.""" + # Body is dropped in `Application._handle_request` for HEAD requests return self.do_GET(environ, base_prefix, path, user)