diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-06-08 08:12:01 -0400 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-06-08 08:12:01 -0400 |
| commit | 96dfb86947d11a4e85f9f34704c8fa503290c8b0 (patch) | |
| tree | aa8968dc6d6238f102fd8a24236f612c8d4b1b3e /searx/engines/bing_images.py | |
| parent | 4e28f12bfcc73b47f382bceedb5b65ee314674ae (diff) | |
| parent | ded3f98218410101c26102fd481c16363484b154 (diff) | |
Merge pull request #361 from asciimoo/https
bing_images & www1x engines use https connections
Diffstat (limited to 'searx/engines/bing_images.py')
| -rw-r--r-- | searx/engines/bing_images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/bing_images.py b/searx/engines/bing_images.py index b06a57edc..839b8e5be 100644 --- a/searx/engines/bing_images.py +++ b/searx/engines/bing_images.py @@ -28,7 +28,7 @@ safesearch = True # search-url base_url = 'https://www.bing.com/' search_string = 'images/search?{query}&count=10&first={offset}' -thumb_url = "http://ts1.mm.bing.net/th?id={ihk}" # no https, bad certificate +thumb_url = "https://www.bing.com/th?id={ihk}" # safesearch definitions safesearch_types = {2: 'STRICT', |