summaryrefslogtreecommitdiff
path: root/searx/engines/fdroid.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/fdroid.py')
-rw-r--r--searx/engines/fdroid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/fdroid.py b/searx/engines/fdroid.py
index b5f004e7b..6a6bf63cb 100644
--- a/searx/engines/fdroid.py
+++ b/searx/engines/fdroid.py
@@ -47,8 +47,8 @@ def response(resp):
+ ' - '
+ extract_text(app.xpath('./div/div/span[@class="package-license"]')).strip()
)
- app_img_src = app.xpath('./img[@class="package-icon"]/@src')[0]
+ thumbnail = app.xpath('./img[@class="package-icon"]/@src')[0]
- results.append({'url': app_url, 'title': app_title, 'content': app_content, 'img_src': app_img_src})
+ results.append({'url': app_url, 'title': app_title, 'content': app_content, 'thumbnail': thumbnail})
return results