mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Return empty REPORT response if no items found
This commit is contained in:
parent
a76f80a620
commit
40217a1360
1 changed files with 5 additions and 3 deletions
|
@ -349,9 +349,11 @@ def xml_report(base_prefix: str, path: str, xml_request: Optional[ET.Element],
|
||||||
assert item.href
|
assert item.href
|
||||||
uri = pathutils.unstrip_path(
|
uri = pathutils.unstrip_path(
|
||||||
posixpath.join(collection.path, item.href))
|
posixpath.join(collection.path, item.href))
|
||||||
multistatus.append(xml_item_response(
|
|
||||||
base_prefix, uri, found_props=found_props,
|
if found_props or not_found_props:
|
||||||
not_found_props=not_found_props, found_item=True))
|
multistatus.append(xml_item_response(
|
||||||
|
base_prefix, uri, found_props=found_props,
|
||||||
|
not_found_props=not_found_props, found_item=True))
|
||||||
|
|
||||||
return client.MULTI_STATUS, multistatus
|
return client.MULTI_STATUS, multistatus
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue