summaryrefslogtreecommitdiff
path: root/searx/engines/google_images.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/google_images.py')
-rw-r--r--searx/engines/google_images.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py
index 79fac3fb0..cc62a4fd2 100644
--- a/searx/engines/google_images.py
+++ b/searx/engines/google_images.py
@@ -47,11 +47,13 @@ def response(resp):
title = result['title']
if not result['url']:
continue
+ thumbnail_src = result['tbUrl']
# append result
results.append({'url': href,
'title': title,
'content': '',
+ 'thumbnail_src': thumbnail_src,
'img_src': unquote(result['url']),
'template': 'images.html'})