diff --git a/chrome/content/zotero/ingester/browser.js b/chrome/content/zotero/ingester/browser.js index e2a471572..8800f274d 100644 --- a/chrome/content/zotero/ingester/browser.js +++ b/chrome/content/zotero/ingester/browser.js @@ -146,7 +146,12 @@ Zotero_Ingester_Interface.contentLoad = function(event) { var doc = event.originalTarget; var rootDoc = doc; - if(!doc.domain) { + try { + if (!doc.domain) { + return; + } + } + catch (e) { return; }