mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
[fix] language query string comparison
This commit is contained in:
parent
9b4d60972a
commit
9ede9b955d
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Search(object):
|
|||
query_parts = self.query.split()
|
||||
modified = False
|
||||
if query_parts[0].startswith(':'):
|
||||
lang = query_parts[0][1:]
|
||||
lang = query_parts[0][1:].lower()
|
||||
|
||||
for lc in language_codes:
|
||||
lang_id, lang_name, country = map(str.lower, lc)
|
||||
|
|
Loading…
Add table
Reference in a new issue