From dac2c9c538954de518e2af93ab5ea009def9f540 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 14 Mar 2026 20:21:39 +0100 Subject: [PATCH] sharing/report: pass share --- radicale/app/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/app/report.py b/radicale/app/report.py index fe81af44..f0fa63a8 100644 --- a/radicale/app/report.py +++ b/radicale/app/report.py @@ -765,7 +765,7 @@ def retrieve_items( logger.warning("Skipping invalid path %r in REPORT request on " "%r: %s", hreference, path, e) response = xml_item_response(base_prefix, hreference, - found_item=False) + found_item=False, share=share) multistatus.append(response) continue if name: @@ -778,7 +778,7 @@ def retrieve_items( for name, item in collection.get_multi(get_names(share)): if not item: uri = pathutils.unstrip_path(posixpath.join(collection.path, name)) - response = xml_item_response(base_prefix, uri, found_item=False) + response = xml_item_response(base_prefix, uri, found_item=False, share=share) multistatus.append(response) else: yield item, False