diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index bbde22f22..8495bf66b 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -429,7 +429,10 @@ Zotero.Sync.Storage = new function () { } // Relative else if (href.firstChild.nodeValue != uri.path) { - _error("DAV:href does not match path in " + funcName); + // Try URL-encoded as well + if (decodeURIComponent(href.firstChild.nodeValue) != uri.path) { + _error("DAV:href does not match path in " + funcName); + } } var modified = response.getElementsByTagNameNS(dcterms, "modified").item(0);