Browse Source

[fix] use english in google engine if no language was set - this prevents guessing the language by the IP of the instance

Adam Tauber 7 years ago
parent
commit
6eb9503896
1 changed files with 3 additions and 4 deletions
  1. 3
    4
      searx/engines/google.py

+ 3
- 4
searx/engines/google.py View File

165
     offset = (params['pageno'] - 1) * 10
165
     offset = (params['pageno'] - 1) * 10
166
 
166
 
167
     if params['language'] == 'all':
167
     if params['language'] == 'all':
168
-        language = 'en'
169
-        country = 'US'
170
-        url_lang = 'lang_en'
171
-    elif params['language'][:2] == 'jv':
168
+        params['language'] = 'en-GB'
169
+
170
+    if params['language'][:2] == 'jv':
172
         language = 'jw'
171
         language = 'jw'
173
         country = 'ID'
172
         country = 'ID'
174
         url_lang = 'lang_jw'
173
         url_lang = 'lang_jw'