mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03:00
Always return current-user-principal
This commit is contained in:
parent
3e52f34309
commit
5ed60ce09d
1 changed files with 2 additions and 2 deletions
|
@ -614,9 +614,9 @@ def _propfind_response(path, item, props, user, write=False):
|
|||
element.append(comp)
|
||||
else:
|
||||
is404 = True
|
||||
elif tag == _tag("D", "current-user-principal") and user:
|
||||
elif tag == _tag("D", "current-user-principal"):
|
||||
tag = ET.Element(_tag("D", "href"))
|
||||
tag.text = _href(collection, "/%s/" % user)
|
||||
tag.text = _href(collection, ("/%s/" % user) if user else "/")
|
||||
element.append(tag)
|
||||
elif tag == _tag("D", "current-user-privilege-set"):
|
||||
privilege = ET.Element(_tag("D", "privilege"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue