mirror of
https://github.com/zotero/zotero.git
synced 2026-09-21 00:22:44 +00:00
Translator type comparison fix from Simon
This commit is contained in:
parent
8ca854fdea
commit
c0fc3aeaaf
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue