From 916739d6b41957c3f277dea7c1429488560a3784 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 12 May 2024 17:52:52 +0200 Subject: [mod] simple theme: drop img_src from default results The use of img_src AND thumbnail in the default results makes no sense (only a thumbnail is needed). In the current state this is rather confusing, because img_src is displayed like a thumbnail (small) and thumbnail is displayed like an image (large). Signed-off-by: Markus Heiser --- searx/engines/recoll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'searx/engines/recoll.py') diff --git a/searx/engines/recoll.py b/searx/engines/recoll.py index b9e87a723..b7499b5a5 100644 --- a/searx/engines/recoll.py +++ b/searx/engines/recoll.py @@ -133,7 +133,7 @@ def response(resp): ) if mtype in ['image'] and subtype in ['bmp', 'gif', 'jpeg', 'png']: - item['img_src'] = url + item['thumbnail'] = url results.append(item) -- cgit v1.2.3