mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
parent
8740357eb2
commit
3be9a22a91
2 changed files with 6 additions and 3 deletions
|
@ -1059,10 +1059,13 @@ class BaseRequestsMixIn:
|
|||
</prop>
|
||||
%s
|
||||
</sync-collection>""" % sync_token_xml)
|
||||
if sync_token and status == 409:
|
||||
xml = DefusedET.fromstring(answer)
|
||||
if status in (403, 409):
|
||||
assert xml.tag == xmlutils.make_clark("D:error")
|
||||
assert sync_token and xml.find(
|
||||
xmlutils.make_clark("D:valid-sync-token")) is not None
|
||||
return None, None
|
||||
assert status == 207
|
||||
xml = DefusedET.fromstring(answer)
|
||||
assert xml.tag == xmlutils.make_clark("D:multistatus")
|
||||
sync_token = xml.find(xmlutils.make_clark("D:sync-token")).text.strip()
|
||||
assert sync_token
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue