diff options
author | Bnyro <bnyro@tutanota.com> | 2023-08-10 11:58:14 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-08-10 12:58:40 +0200 |
commit | 834e1c3f12f8f23956ecf8a230a0660ebc4827f2 (patch) | |
tree | d3c2d5ce7a161454495b8d6b1b2a256c55461cc0 /searx/engines | |
parent | c381fc001f9275c982807180c8e69ac6c100b865 (diff) | |
download | searxng-834e1c3f12f8f23956ecf8a230a0660ebc4827f2.tar.gz searxng-834e1c3f12f8f23956ecf8a230a0660ebc4827f2.zip |
[mod] engine lemmy: increase thumbnail quality to align with theme
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/lemmy.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']}" |