diff options
Diffstat (limited to 'searx/engines/wikicommons.py')
| -rw-r--r-- | searx/engines/wikicommons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/wikicommons.py b/searx/engines/wikicommons.py index a478f57d2..9b0849716 100644 --- a/searx/engines/wikicommons.py +++ b/searx/engines/wikicommons.py @@ -62,7 +62,7 @@ def response(resp): 'title': title, 'content': item["snippet"], 'img_src': imageinfo["url"], - 'img_format': f'{imageinfo["width"]} x {imageinfo["height"]}', + 'resolution': f'{imageinfo["width"]} x {imageinfo["height"]}', 'thumbnail_src': imageinfo["thumburl"], 'template': 'images.html', } |