diff --git a/query/view/focus_multi_match.js b/query/view/focus_multi_match.js index cceb4a0c0..2bbb16687 100644 --- a/query/view/focus_multi_match.js +++ b/query/view/focus_multi_match.js @@ -7,10 +7,5 @@ module.exports = (view_name) => (vs) => { return null; } - return { - 'function_score': { - 'query': peliasQuery.view.leaf.multi_match(view_name)(vs), - 'score_mode': 'multiply', - }, - }; + return peliasQuery.view.leaf.multi_match(view_name)(vs); };