diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-04-29 12:02:39 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-29 12:02:39 +0000 |
| commit | 0f4dbc4eca848d910fb4433e3d1c61fa7fcfa8de (patch) | |
| tree | d3b37c89b57aca471cddecaea44f8e9218cc487f /searx/engines/bing_videos.py | |
| parent | 678d41d75bcdf14b17fa13f69aa323a9f8716faa (diff) | |
| parent | 7342806987aec05c50f12e149683609640ba66a0 (diff) | |
Merge branch 'master' into uwsgi_static
Diffstat (limited to 'searx/engines/bing_videos.py')
| -rw-r--r-- | searx/engines/bing_videos.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/searx/engines/bing_videos.py b/searx/engines/bing_videos.py index f1e636819..f048f0d8e 100644 --- a/searx/engines/bing_videos.py +++ b/searx/engines/bing_videos.py @@ -12,10 +12,10 @@ from json import loads from lxml import html -from searx.engines.bing_images import _fetch_supported_languages, supported_languages_url from searx.url_utils import urlencode from searx.utils import match_language +from searx.engines.bing import _fetch_supported_languages, supported_languages_url, language_aliases categories = ['videos'] paging = True @@ -67,6 +67,10 @@ def request(query, params): if params['time_range'] in time_range_dict: params['url'] += time_range_string.format(interval=time_range_dict[params['time_range']]) + # bing videos did not like "older" versions < 70.0.1 when selectin other + # languages then 'en' .. very strange ?!?! + params['headers']['User-Agent'] = 'Mozilla/5.0 (X11; Linux x86_64; rv:73.0.1) Gecko/20100101 Firefox/73.0.1' + return params |