Search should be case sensitive (#287)

lowercase the query before using it in search queries
This commit is contained in:
Rok Garbas 2021-02-06 13:38:13 +01:00 committed by GitHub
parent 69efbb60de
commit 72434f54a5
Failed to generate hash of commit

View file

@ -1017,7 +1017,7 @@ searchFields query fields =
)
]
)
(queryVariations (String.words query))
(queryVariations (String.words (String.toLower query)))
makeRequestBody :