mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Don't handle empty properties as deleted
This commit is contained in:
parent
5c15b30058
commit
c6ca643bcf
1 changed files with 1 additions and 1 deletions
|
@ -952,7 +952,7 @@ def _propfind_response(base_prefix, path, item, props, user, write=False,
|
||||||
else:
|
else:
|
||||||
human_tag = _tag_from_clark(tag)
|
human_tag = _tag_from_clark(tag)
|
||||||
meta = item.get_meta(human_tag)
|
meta = item.get_meta(human_tag)
|
||||||
if meta:
|
if meta is not None:
|
||||||
element.text = meta
|
element.text = meta
|
||||||
else:
|
else:
|
||||||
is404 = True
|
is404 = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue