mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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):
|
def _get_href(self, item):
|
||||||
href = item.ident
|
href = item.ident
|
||||||
for char in self.unsafe_href_chars:
|
for char in self.unsafe_href_chars:
|
||||||
href = item.ident.replace(char, '_')
|
href = href.replace(char, '_')
|
||||||
return self._normalize_href(href + self.fileext)
|
return self._normalize_href(href + self.fileext)
|
||||||
|
|
||||||
def get(self, href):
|
def get(self, href):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue