mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Fix URLs in report requests
This commit is contained in:
parent
de0643e741
commit
af10a2f1c4
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ def report(path, xml_request, calendar):
|
|||
multistatus.append(response)
|
||||
|
||||
href = ET.Element(_tag("D", "href"))
|
||||
href.text = path + item.name
|
||||
href.text = "%s/%s" % (path, item.name)
|
||||
response.append(href)
|
||||
|
||||
propstat = ET.Element(_tag("D", "propstat"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue