summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorBnyro <bnyro@tutanota.com>2026-06-26 17:02:56 +0200
committerBnyro <bnyro@tutanota.com>2026-06-28 22:31:01 +0200
commit8605230eb82d349c4e964b4eda78757bfeab0176 (patch)
tree4afb556dbf9d0b3e94445c3f2f5e5b7a7ec5c454 /searx
parenta54722e69213956dc89836b54d79747629d4f7c2 (diff)
[fix] resulthunter: images in search results are not clickable
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/resulthunter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/resulthunter.py b/searx/engines/resulthunter.py
index 6aa3982d4..ba3714129 100644
--- a/searx/engines/resulthunter.py
+++ b/searx/engines/resulthunter.py
@@ -101,7 +101,7 @@ def _image_results(doc: "ElementBase") -> EngineResults:
res.types.Image(
url=extract_text(eval_xpath(result, "./@href")) or "",
title=extract_text(eval_xpath(result, "./img/@alt")) or "",
- thumbnail_src=extract_text(eval_xpath(result, "./img/@src")) or "",
+ img_src=extract_text(eval_xpath(result, "./img/@src")) or "",
),
)
)