summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorNoémi Ványi <kvch@users.noreply.github.com>2019-01-01 21:45:39 +0100
committerGitHub <noreply@github.com>2019-01-01 21:45:39 +0100
commitcf8e2246010534b4cb617fe96d198f23d7d038dd (patch)
treee0812e88088a4dd2acc94bbc6ea57b3cf06b8a75 /searx
parent442772a6c5011f5dfd1e9d651d935b179cd14568 (diff)
parent73ec2ba74ec735bb5e989cab0336ecca24a93701 (diff)
Merge pull request #1469 from bourrel/fix_bing_images
Fix bing image thumbnail path
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/bing_images.py4
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',