Merge branch 'improved-broken-vcard-handling' of https://github.com/pbiering/Radicale into pbiering-improved-broken-vcard-handling

This commit is contained in:
Guillaume Ayoub 2017-02-26 16:35:44 +01:00
commit 6b683477cb
3 changed files with 28 additions and 2 deletions

View file

@ -28,6 +28,7 @@ in them for XML requests (all but PUT).
import posixpath
import re
import xml.etree.ElementTree as ET
from pprint import pprint
from collections import OrderedDict
from datetime import datetime, timedelta, timezone
from http import client
@ -552,7 +553,8 @@ def propfind(base_prefix, path, xml_request, read_collections,
else:
response = _propfind_response(
base_prefix, path, collection, props, user, write=True)
multistatus.append(response)
if response:
multistatus.append(response)
for collection in read_collections:
if collection in collections:
continue
@ -563,7 +565,8 @@ def propfind(base_prefix, path, xml_request, read_collections,
else:
response = _propfind_response(
base_prefix, path, collection, props, user, write=False)
multistatus.append(response)
if response:
multistatus.append(response)
return client.MULTI_STATUS, _pretty_xml(multistatus)