summaryrefslogtreecommitdiff
path: root/searx/engines/google_play.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/google_play.py')
-rw-r--r--searx/engines/google_play.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/google_play.py b/searx/engines/google_play.py
index f8ab02c27..9853a4911 100644
--- a/searx/engines/google_play.py
+++ b/searx/engines/google_play.py
@@ -64,13 +64,13 @@ def response_movies(resp):
title = extract_text(eval_xpath(div_2, './div[@title]'))
metadata = extract_text(eval_xpath(div_2, './div[@class]'))
img = eval_xpath(div_1, './/img')[0]
- img_src = img.get('src')
+ thumbnail = img.get('src')
results.append(
{
"url": url,
"title": title,
"content": sec_name,
- "img_src": img_src,
+ "thumbnail": thumbnail,
'metadata': metadata,
'template': 'videos.html',
}