mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03: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:
|
||||
human_tag = _tag_from_clark(tag)
|
||||
meta = item.get_meta(human_tag)
|
||||
if meta:
|
||||
if meta is not None:
|
||||
element.text = meta
|
||||
else:
|
||||
is404 = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue