From f7435814fc0c8dcdbf1b49346a2ef64b23e6ab02 Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 4 Sep 2016 22:28:34 +0200 Subject: [PATCH] Repair hreferences in REPORT response They were not extended with base_prefix. --- radicale/xmlutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index c3215a5..915b306 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -853,7 +853,7 @@ def _item_response(base_prefix, href, found_props=(), not_found_props=(), response = ET.Element(_tag("D", "response")) href_tag = ET.Element(_tag("D", "href")) - href_tag.text = href + href_tag.text = _href(base_prefix, href) response.append(href_tag) if found_item: