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

This commit is contained in:
Adam Tauber 2017-11-22 22:56:47 +01:00
parent 6fdb6640d9
commit 6eb9503896
1 changed files with 3 additions and 4 deletions

View File

@ -165,10 +165,9 @@ def request(query, params):
offset = (params['pageno'] - 1) * 10
if params['language'] == 'all':
language = 'en'
country = 'US'
url_lang = 'lang_en'
elif params['language'][:2] == 'jv':
params['language'] = 'en-GB'
if params['language'][:2] == 'jv':
language = 'jw'
country = 'ID'
url_lang = 'lang_jw'