Commit c8a7957b by 王明范

Merge branch 'TECH-SEARCH-merge-keyword-tag' into 'master'

filter fix

See merge request !5
parents 099f58c5 6edd6650
...@@ -704,7 +704,7 @@ public class SuggestTask { ...@@ -704,7 +704,7 @@ public class SuggestTask {
} }
// 年数据过滤 // 年数据过滤
if (suggestKeywordInfo.getYearCount() < 2 || suggestKeywordInfo.getYearClickCount() < 2) { if ((suggestKeywordInfo.getYearCount() < 2 || suggestKeywordInfo.getYearClickCount() < 2) && suggestKeywordInfo.getYearCount() < 10) {
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment