Translator type comparison fix from Simon

This commit is contained in:
Dan Stillman 2009-07-07 00:20:10 +00:00
parent 8ca854fdea
commit c0fc3aeaaf

View File

@ -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;
}