Browse Source

[fix] language query string comparison

asciimoo 11 years ago
parent
commit
9ede9b955d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/search.py

+ 1
- 1
searx/search.py View File

@@ -78,7 +78,7 @@ class Search(object):
78 78
         query_parts = self.query.split()
79 79
         modified = False
80 80
         if query_parts[0].startswith(':'):
81
-            lang = query_parts[0][1:]
81
+            lang = query_parts[0][1:].lower()
82 82
 
83 83
             for lc in language_codes:
84 84
                 lang_id, lang_name, country = map(str.lower, lc)