diff --git a/chrome/content/zotero/xpcom/http.js b/chrome/content/zotero/xpcom/http.js index 71f41814e8..0218c3953b 100644 --- a/chrome/content/zotero/xpcom/http.js +++ b/chrome/content/zotero/xpcom/http.js @@ -253,7 +253,7 @@ Zotero.HTTP = new function() { deferred.resolve(xmlhttp); } else { let msg = "HTTP " + method + " " + dispURL + " failed with status code " + xmlhttp.status; - if (xmlhttp.responseText) { + if (!xmlhttp.responseType && xmlhttp.responseText) { msg += ":\n\n" + xmlhttp.responseText; } Zotero.debug(msg, 1);