diff options
| author | Dalf <alex@al-f.net> | 2015-06-06 19:23:07 +0200 |
|---|---|---|
| committer | Dalf <alex@al-f.net> | 2015-06-06 19:23:07 +0200 |
| commit | 9e147d91f041e28240e5782ba2223a18f9ddd3b1 (patch) | |
| tree | e9d724572e0f780c24942d664ad1312607949a45 /searx/engines/bing_images.py | |
| parent | 4e28f12bfcc73b47f382bceedb5b65ee314674ae (diff) | |
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', |