Search should be case sensitive (#287)
lowercase the query before using it in search queries
This commit is contained in:
parent
69efbb60de
commit
72434f54a5
|
@ -1017,7 +1017,7 @@ searchFields query fields =
|
|||
)
|
||||
]
|
||||
)
|
||||
(queryVariations (String.words query))
|
||||
(queryVariations (String.words (String.toLower query)))
|
||||
|
||||
|
||||
makeRequestBody :
|
||||
|
|
Loading…
Reference in a new issue