diff options
author | Sophie Tauchert <999eagle@999eagle.moe> | 2020-06-29 14:48:56 +0200 |
---|---|---|
committer | Sophie Tauchert <999eagle@999eagle.moe> | 2020-06-29 14:48:56 +0200 |
commit | 71db7b1238001756a45a51018774bd9df8c81a39 (patch) | |
tree | d8569fd89db046e68a0e6f36d4710d4c9b8c9888 /searx/engines/yacy.py | |
parent | fe72c7a6fd5622a78e271337a6cbc8416168add5 (diff) | |
download | searxng-71db7b1238001756a45a51018774bd9df8c81a39.tar.gz searxng-71db7b1238001756a45a51018774bd9df8c81a39.zip |
Fix YaCy text results returned as images
Diffstat (limited to 'searx/engines/yacy.py')
-rw-r--r-- | searx/engines/yacy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/yacy.py b/searx/engines/yacy.py index 25bc83687..f1d4c6abe 100644 --- a/searx/engines/yacy.py +++ b/searx/engines/yacy.py @@ -75,7 +75,7 @@ def response(resp): for result in search_results[0].get('items', []): # parse image results - if result.get('image'): + if result.get('image') and result.get('width') and result.get('height'): result_url = '' if 'url' in result: |