mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix bug with DAV href generation
This commit is contained in:
parent
5ebc9eaecb
commit
d14fcbc59a
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@ class DavStorage(Storage):
|
|||
def _get_href(self, item):
|
||||
href = item.ident
|
||||
for char in self.unsafe_href_chars:
|
||||
href = item.ident.replace(char, '_')
|
||||
href = href.replace(char, '_')
|
||||
return self._normalize_href(href + self.fileext)
|
||||
|
||||
def get(self, href):
|
||||
|
|
|
|||
Loading…
Reference in a new issue