Skip to content

Commit

Permalink
Search should be case sensitive
Browse files Browse the repository at this point in the history
lowercase the query before using it in search queries
  • Loading branch information
garbas committed Feb 6, 2021
1 parent 69efbb6 commit c363d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Search.elm
Expand Up @@ -1017,7 +1017,7 @@ searchFields query fields =
)
]
)
(queryVariations (String.words query))
(queryVariations (String.words (String.toLower query)))


makeRequestBody :
Expand Down

0 comments on commit c363d72

Please sign in to comment.