mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 14:47:35 +03:00
Fix principal-collection-set in PROPFIND response
This commit is contained in:
parent
83db27303f
commit
d09b16c5ad
1 changed files with 5 additions and 2 deletions
|
@ -284,8 +284,11 @@ def _propfind_response(path, item, props, user):
|
|||
is404 = True
|
||||
tag = ET.Element(_tag("D", "unauthenticated"))
|
||||
element.append(tag)
|
||||
elif tag in (_tag("D", "principal-collection-set"),
|
||||
_tag("C", "calendar-user-address-set"),
|
||||
elif tag == _tag("D", "principal-collection-set"):
|
||||
tag = ET.Element(_tag("D", "href"))
|
||||
tag.text = _href("/")
|
||||
element.append(tag)
|
||||
elif tag in (_tag("C", "calendar-user-address-set"),
|
||||
_tag("CR", "addressbook-home-set"),
|
||||
_tag("C", "calendar-home-set")):
|
||||
tag = ET.Element(_tag("D", "href"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue