diff options
| author | rachmadani haryono <rachmadaniHaryono@users.noreply.github.com> | 2019-05-29 19:17:28 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-29 19:17:28 +0800 |
| commit | 45eb2688d02c546aefb4fb6b1220d8d2efac0baa (patch) | |
| tree | 4abe56466b79eef1cab3e922d17e7c6535929c74 | |
| parent | ac357b12e3577616b2b12b2b8e9f53df2fa5a833 (diff) | |
| parent | cbd1ebdce8f75730bee96fcfae8739e11023f9a9 (diff) | |
Merge branch 'master' into feature/fix-config
| -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 |