commit 62290e0bcd88909243a5bf8ef35436916e078326
parent 9cb95ac77ccecfb6066f8d950d30cf4208b92b80
Author: Dan Stillman <dstillman@zotero.org>
Date: Wed, 10 Sep 2008 15:50:25 +0000
Additional debugging for unexpected status code storage error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js
@@ -392,11 +392,11 @@ Zotero.Sync.Storage = new function () {
return;
}
else if (req.status != 207) {
+ Zotero.debug(req.responseText);
_error("Unexpected status code " + req.status + " in " + funcName);
}
_checkResponse(req);
-
Zotero.debug(req.responseText);
var D = "DAV:";