mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Merge pull request #205 from untitaker/fix-encodings
Fix encoding bug in upload
This commit is contained in:
commit
8fd16f9987
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ class DavStorage(Storage):
|
|||
headers=headers
|
||||
)
|
||||
etag = response.headers.get('etag', None)
|
||||
href = self._normalize_href(response.url)
|
||||
href = self._normalize_href(_decode_href(response.url))
|
||||
if not etag:
|
||||
item2, etag = self.get(href)
|
||||
assert item2.uid == item.uid
|
||||
|
|
|
|||
Loading…
Reference in a new issue