diff --git a/chrome/content/zotero/ingester/selectitems.js b/chrome/content/zotero/ingester/selectitems.js index 32c01596c..8f639248c 100644 --- a/chrome/content/zotero/ingester/selectitems.js +++ b/chrome/content/zotero/ingester/selectitems.js @@ -50,7 +50,7 @@ Zotero_Ingester_Interface_SelectItems.init = function() { var item = this.io.dataIn[i]; var title, checked = false; - if(typeof(item) != "string" && item.title != undefined) { + if(item && typeof(item) == "object" && item.title !== undefined) { title = item.title; checked = !!item.checked; } else {