From 834e1c3f12f8f23956ecf8a230a0660ebc4827f2 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Thu, 10 Aug 2023 11:58:14 +0200 Subject: [PATCH] [mod] engine lemmy: increase thumbnail quality to align with theme --- searx/engines/lemmy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/lemmy.py b/searx/engines/lemmy.py index c1a38f9b9..8c1b22151 100644 --- a/searx/engines/lemmy.py +++ b/searx/engines/lemmy.py @@ -129,7 +129,7 @@ def _get_posts(json): img_src = None if result['post'].get('thumbnail_url'): - img_src = result['post']['thumbnail_url'] + '?format=webp&thumbnail=128' + img_src = result['post']['thumbnail_url'] + '?format=webp&thumbnail=208' metadata = ( f"▲ {result['counts']['upvotes']} ▼ {result['counts']['downvotes']}"