diff --git a/chrome/content/zotero/xpcom/translate.js b/chrome/content/zotero/xpcom/translate.js index 425dc824cf..eda73c3ae8 100644 --- a/chrome/content/zotero/xpcom/translate.js +++ b/chrome/content/zotero/xpcom/translate.js @@ -145,7 +145,7 @@ Zotero.Translators = new function() { if (!metadata.translatorType) { var found = false; for each(var type in TRANSLATOR_TYPES) { - if (metadata.translatorType == type) { + if (metadata.translatorType & type) { found = true; break; }