this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove toLower from query since we set caseInsensitive, it was causin… (#604)

…g some issues with cyrillic capitalCased queries

authored by

Jaz and committed by
GitHub
d06d65d9 a1c27210

+1 -1
+1 -1
search/parse_query.go
··· 29 29 filters = append(filters, map[string]interface{}{ 30 30 "term": map[string]interface{}{ 31 31 "tag": map[string]interface{}{ 32 - "value": strings.ToLower(p[1:]), 32 + "value": p[1:], 33 33 "case_insensitive": true, 34 34 }, 35 35 },