summaryrefslogtreecommitdiff
path: root/searx/engines/bandcamp.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/bandcamp.py')
-rw-r--r--searx/engines/bandcamp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/bandcamp.py b/searx/engines/bandcamp.py
index b79b0df3e..590d206d2 100644
--- a/searx/engines/bandcamp.py
+++ b/searx/engines/bandcamp.py
@@ -68,7 +68,7 @@ def response(resp):
thumbnail = result.xpath('.//div[@class="art"]/img/@src')
if thumbnail:
- new_result['img_src'] = thumbnail[0]
+ new_result['thumbnail'] = thumbnail[0]
result_id = parse_qs(urlparse(link.get('href')).query)["search_item_id"][0]
itemtype = extract_text(result.xpath('.//div[@class="itemtype"]')).lower()