diff options
author | Emilien Devos <contact@emiliendevos.be> | 2019-11-22 21:34:44 +0000 |
---|---|---|
committer | Emilien Devos <contact@emiliendevos.be> | 2019-11-22 23:01:41 +0100 |
commit | 8f51430f5c64e23dba0d518064d4972efec7fe83 (patch) | |
tree | 51993357a52e8dd2f58096914fd819b8eb94d95c /searx/engines | |
parent | 42d5e2c02cd4715a0e09411efbb249ef5d8defed (diff) | |
download | searxng-8f51430f5c64e23dba0d518064d4972efec7fe83.tar.gz searxng-8f51430f5c64e23dba0d518064d4972efec7fe83.zip |
[fix] Force Google old UI with a new user agent
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/google.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py index 03f0523e7..0a0d6ccb1 100644 --- a/searx/engines/google.py +++ b/searx/engines/google.py @@ -199,8 +199,9 @@ def request(query, params): params['headers']['Accept-Language'] = language + ',' + language + '-' + country params['headers']['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' - # Force Internet Explorer 12 user agent to avoid loading the new UI that Searx can't parse - params['headers']['User-Agent'] = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" + # Force Safari 3.1 on Mac OS X (Leopard) user agent to avoid loading the new UI that Searx can't parse + params['headers']['User-Agent'] = ("Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_4)" + "AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.20.1") params['google_hostname'] = google_hostname |