summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/utils.py')
-rw-r--r--searx/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 498f8d0bf..3df571160 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -295,12 +295,12 @@ def is_valid_lang(lang):
if is_abbr:
for l in language_codes:
if l[0][:2] == lang.lower():
- return (True, l[0][:2], l[1].lower())
+ return (True, l[0][:2], l[3].lower())
return False
else:
for l in language_codes:
if l[1].lower() == lang.lower():
- return (True, l[0][:2], l[1].lower())
+ return (True, l[0][:2], l[3].lower())
return False