mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Fix removal of base_prefix in multiget requests
This commit is contained in:
parent
6adc7f5fed
commit
bf8bd90bcb
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ def report(path, xml_request, collection):
|
|||
for href_element in root.findall(_tag("D", "href")):
|
||||
href_path = unquote(urlparse(href_element.text).path)
|
||||
if href_path.startswith(base_prefix):
|
||||
hreferences.add(href_path[len(base_prefix):])
|
||||
hreferences.add(href_path[len(base_prefix) - 1:])
|
||||
else:
|
||||
hreferences = (path,)
|
||||
# TODO: handle other filters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue