Fix the GET and REPORT requests for vcards
This commit is contained in:
parent
fd3eacfe01
commit
1dfa887384
@ -53,6 +53,9 @@ def serialize(tag, headers=(), items=()):
|
|||||||
The collection has the given ``headers`` and ``items``.
|
The collection has the given ``headers`` and ``items``.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
if tag == "VCARD" or (tag == "VADDRESSBOOK" and items and len(items) == 1):
|
||||||
|
lines = [items[0].text]
|
||||||
|
else:
|
||||||
lines = ["BEGIN:%s" % tag]
|
lines = ["BEGIN:%s" % tag]
|
||||||
for part in (headers, items):
|
for part in (headers, items):
|
||||||
if part:
|
if part:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user