From 9229d08e557a132857c8d19448c486d3ea3c263e Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 26 Jul 2015 22:51:18 +0200 Subject: [PATCH] Add another ticket link --- vdirsyncer/storage/dav.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vdirsyncer/storage/dav.py b/vdirsyncer/storage/dav.py index b32d801..a778b1b 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -42,7 +42,9 @@ def _normalize_href(base, href): x = utils.compat.urlparse.urljoin(base, href) x = utils.compat.urlparse.urlsplit(x).path - # https://github.com/owncloud/contacts/issues/581 + # Encoding issues: + # - https://github.com/owncloud/contacts/issues/581 + # - https://github.com/Kozea/Radicale/issues/298 old_x = None while old_x is None or x != old_x: if _contains_quoted_reserved_chars(x):