summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorSophie Tauchert <999eagle@999eagle.moe>2020-06-29 14:48:56 +0200
committerSophie Tauchert <999eagle@999eagle.moe>2020-06-29 14:48:56 +0200
commit71db7b1238001756a45a51018774bd9df8c81a39 (patch)
treed8569fd89db046e68a0e6f36d4710d4c9b8c9888 /searx
parentfe72c7a6fd5622a78e271337a6cbc8416168add5 (diff)
downloadsearxng-71db7b1238001756a45a51018774bd9df8c81a39.tar.gz
searxng-71db7b1238001756a45a51018774bd9df8c81a39.zip
Fix YaCy text results returned as images
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/yacy.py2
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: