mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Fix the href URL in propfind
This commit is contained in:
parent
49ba07db5a
commit
3d7f07dc0c
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ def _propfind_response(path, item, props, user):
|
|||
response = ET.Element(_tag("D", "response"))
|
||||
|
||||
href = ET.Element(_tag("D", "href"))
|
||||
href.text = item.local_path if is_calendar else "%s/%s" % (path, item.name)
|
||||
href.text = item.url if is_calendar else "%s/%s" % (path, item.name)
|
||||
response.append(href)
|
||||
|
||||
propstat404 = ET.Element(_tag("D", "propstat"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue