diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2019-01-04 22:27:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-04 22:27:05 +0100 |
| commit | 1ea56576dc4f2fb65b9028c900c2e4fb063a8b9a (patch) | |
| tree | e4d0e50c0494ca49a41351edea532c00289386a3 /searx/engines/bing_images.py | |
| parent | 0e493db2fb06fd78ac05f82abd8b1cc86089684f (diff) | |
| parent | 899ba5d6dee82faacb572b4d9bc4c58570628531 (diff) | |
Merge branch 'master' into devel_google_videos
Diffstat (limited to 'searx/engines/bing_images.py')
| -rw-r--r-- | searx/engines/bing_images.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/searx/engines/bing_images.py b/searx/engines/bing_images.py index 66e14c01f..876011f1d 100644 --- a/searx/engines/bing_images.py +++ b/searx/engines/bing_images.py @@ -88,9 +88,7 @@ def response(resp): url = json_data.get('purl') img_src = json_data.get('murl') - - thumb_json_data = loads(_quote_keys_regex.sub(r'\1"\2": \3', link.attrib.get('mad'))) - thumbnail = thumb_json_data.get('turl') + thumbnail = json_data.get('turl') # append result results.append({'template': 'images.html', |