Commit 4d9ed17928629ec1e450565c3fc3ee894ecf51e8
1 parent
a8eacd43
Exists in
elasticsearch_api
fixes for search mapping
Showing
2 changed files
with
14 additions
and
1 deletions
Show diff stats
plugins/elasticsearch/controllers/elasticsearch_plugin_controller.rb
... | ... | @@ -33,7 +33,7 @@ class ElasticsearchPluginController < ApplicationController |
33 | 33 | def get_query text, klass |
34 | 34 | query = {} |
35 | 35 | unless text.blank? |
36 | - | |
36 | + text = text.downcase | |
37 | 37 | fields = klass::SEARCHABLE_FIELDS.map do |key, value| |
38 | 38 | if value[:weight] |
39 | 39 | "#{key}^#{value[:weight]}" | ... | ... |