Skip to content

Commit

Permalink
Don't handle empty properties as deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
Unrud committed Aug 4, 2017
1 parent 5c15b30 commit c6ca643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicale/xmlutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6ca643

Please sign in to comment.