From db43af33accf3dd5fb0f78b27b872207664939ec Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 12 Oct 2013 02:54:28 -0400 Subject: [PATCH] Fix "req is not defined" error message (which indicates a WebDAV error) --- chrome/content/zotero/xpcom/storage/webdav.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js index d88389bae..04385867e 100644 --- a/chrome/content/zotero/xpcom/storage/webdav.js +++ b/chrome/content/zotero/xpcom/storage/webdav.js @@ -1091,7 +1091,7 @@ Zotero.Sync.Storage.WebDAV = (function () { ); }) .catch(function (e) { - var msg = "HTTP " + req.status + " error from WebDAV server " + var msg = "HTTP " + e.status + " error from WebDAV server " + "for PUT request"; Zotero.debug(msg, 2); Components.utils.reportError(msg);