Remove duplicate condition

Fixes #1095
This commit is contained in:
Dan Stillman 2016-09-19 14:01:13 -04:00
parent 88fbe26abd
commit 745c67d42f

View file

@ -664,9 +664,7 @@ Zotero.Search.prototype.search = Zotero.Promise.coroutine(function* (asTempTable
inQS = false;
continue;
}
else if (c.condition == 'fulltextContent' ||
c.condition == 'fulltextContent' ||
inQS) {
else if (c.condition == 'fulltextContent' || inQS) {
continue;
}
else if (joinMode == 'any' && !c.required) {