From 745c67d42fb0831f77a13a8c3116a69e8773e9b7 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 19 Sep 2016 14:01:13 -0400 Subject: [PATCH] Remove duplicate condition Fixes #1095 --- chrome/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 index 41332b0e5..261ed8561 100644 --- 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) {