diff --git a/chrome/content/zotero/xpcom/connector/cachedTypes.js b/chrome/content/zotero/xpcom/connector/cachedTypes.js index b9433c6cf..466eb94dc 100644 --- a/chrome/content/zotero/xpcom/connector/cachedTypes.js +++ b/chrome/content/zotero/xpcom/connector/cachedTypes.js @@ -130,7 +130,8 @@ Zotero.Connector_Types = new function() { // mimics itemFields.js if(!field || !itemType) return false; - return itemType[4]/* fields */.indexOf(field[0]/* id */) !== -1; + /* fields */ /* id */ + return itemType[4].indexOf(field[0]) !== -1; }; this.getFieldIDFromTypeAndBase = function(typeIdOrName, fieldIdOrName) {