mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix edge case in DAV
This commit is contained in:
parent
9658908118
commit
e08d096f29
1 changed files with 2 additions and 0 deletions
|
|
@ -84,6 +84,8 @@ def _parse_xml(content):
|
|||
|
||||
|
||||
def _merge_xml(items):
|
||||
if not items:
|
||||
return []
|
||||
rv = items[0]
|
||||
for item in items[1:]:
|
||||
rv.extend(item.getiterator())
|
||||
|
|
|
|||
Loading…
Reference in a new issue