www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 745c67d42fb0831f77a13a8c3116a69e8773e9b7
parent 88fbe26abd756130d17863d494f2cec9d6620c9f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 19 Sep 2016 14:01:13 -0400

Remove duplicate condition

Fixes #1095

Diffstat:
Mchrome/content/zotero/xpcom/search.js | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js @@ -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) {