mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-26 09:05:50 +00:00
DAV: Also allow : in href
This commit is contained in:
parent
7e6cf8cb28
commit
6fa3b1d3d7
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ def _normalize_href(base, href):
|
|||
x = utils.compat.urlparse.urlsplit(x).path
|
||||
|
||||
x = utils.compat.urlunquote(x)
|
||||
x = utils.compat.urlquote(x, '/@%')
|
||||
x = utils.compat.urlquote(x, '/@%:')
|
||||
|
||||
dav_logger.debug('Normalized URL from {!r} to {!r}'.format(orig_href, x))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue