diff options
| author | Bnyro <bnyro@tutanota.com> | 2024-02-20 10:51:58 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-02-25 16:22:37 +0100 |
| commit | e76ab1a4b3a99b0ec2ef90c3aadc92ffbf6889b1 (patch) | |
| tree | be5443686fbe1ab6a6fa95e55a12a189230ba92e /searx/engines/seekr.py | |
| parent | b683aa63fb3e1689c28bd4b762b4ad962e8e232c (diff) | |
[refactor] images: add resolution, image format and filesize fields
Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/seekr.py')
| -rw-r--r-- | searx/engines/seekr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/seekr.py b/searx/engines/seekr.py index 9250ac991..014b736dc 100644 --- a/searx/engines/seekr.py +++ b/searx/engines/seekr.py @@ -122,7 +122,7 @@ def _images_response(json): 'url': summary['refererurl'], 'title': result['title'], 'img_src': result['url'], - 'img_format': f"{summary['width']}x{summary['height']}", + 'resolution': f"{summary['width']}x{summary['height']}", 'thumbnail_src': 'https://media.seekr.com/engine/rp/' + summary['tg'] + '/?src= ' + result['thumbnail'], } ) |