Prepare for 2.4
This commit is contained in:
parent
54d3a1fe07
commit
49ef49a919
1 changed files with 3 additions and 2 deletions
|
@ -92,8 +92,9 @@ public class SearchCoreFactory {
|
|||
throws IOException {
|
||||
phrase.countUnknownWordsMatch(res);
|
||||
int cnt = resultMatcher.getCount();
|
||||
if(!phrase.getUnknownSearchWords().isEmpty() && api != null) {
|
||||
SearchPhrase nphrase = phrase.selectWord(res, phrase.getUnknownSearchWords(res.otherWordsMatch),
|
||||
List<String> ws = phrase.getUnknownSearchWords(res.otherWordsMatch);
|
||||
if(!ws.isEmpty() && api != null) {
|
||||
SearchPhrase nphrase = phrase.selectWord(res, ws,
|
||||
phrase.isLastUnknownSearchWordComplete());
|
||||
SearchResult prev = resultMatcher.setParentSearchResult(res);
|
||||
res.parentSearchResult = prev;
|
||||
|
|
Loading…
Reference in a new issue