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 {
|
throws IOException {
|
||||||
phrase.countUnknownWordsMatch(res);
|
phrase.countUnknownWordsMatch(res);
|
||||||
int cnt = resultMatcher.getCount();
|
int cnt = resultMatcher.getCount();
|
||||||
if(!phrase.getUnknownSearchWords().isEmpty() && api != null) {
|
List<String> ws = phrase.getUnknownSearchWords(res.otherWordsMatch);
|
||||||
SearchPhrase nphrase = phrase.selectWord(res, phrase.getUnknownSearchWords(res.otherWordsMatch),
|
if(!ws.isEmpty() && api != null) {
|
||||||
|
SearchPhrase nphrase = phrase.selectWord(res, ws,
|
||||||
phrase.isLastUnknownSearchWordComplete());
|
phrase.isLastUnknownSearchWordComplete());
|
||||||
SearchResult prev = resultMatcher.setParentSearchResult(res);
|
SearchResult prev = resultMatcher.setParentSearchResult(res);
|
||||||
res.parentSearchResult = prev;
|
res.parentSearchResult = prev;
|
||||||
|
|
Loading…
Reference in a new issue