Don't handle empty properties as deleted
This commit is contained in:
parent
5c15b30058
commit
c6ca643bcf
@ -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…
Reference in New Issue
Block a user