diff --git a/chrome/content/zotero/xpcom/http.js b/chrome/content/zotero/xpcom/http.js index f422d197a..d035d15f4 100644 --- a/chrome/content/zotero/xpcom/http.js +++ b/chrome/content/zotero/xpcom/http.js @@ -121,7 +121,7 @@ Zotero.HTTP = new function() { Zotero.debug("HTTP " + method + " " + dispURL); } - if (this.browserIsOffline()) { + if (url.startsWith('http') && this.browserIsOffline()) { Zotero.debug("HTTP " + method + " " + dispURL + " failed: Browser is offline"); throw new this.BrowserOfflineException(); }