diff options
author | Emilien Devos <contact@emiliendevos.be> | 2019-05-29 01:05:57 +0000 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2019-05-29 10:05:57 +0900 |
commit | cbd1ebdce8f75730bee96fcfae8739e11023f9a9 (patch) | |
tree | c3c668943a311b21fcb9b25571685d69108a7e7e /searx/engines | |
parent | 4b7332286aa9c53fa39c5d64b9dc6a8fde3b30da (diff) | |
download | searxng-cbd1ebdce8f75730bee96fcfae8739e11023f9a9.tar.gz searxng-cbd1ebdce8f75730bee96fcfae8739e11023f9a9.zip |
[fix] Force Google old UI (#1597)
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/google.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py index 36ca7a116..03f0523e7 100644 --- a/searx/engines/google.py +++ b/searx/engines/google.py @@ -199,6 +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)" + params['google_hostname'] = google_hostname return params |