forked from zaclys/searxng
Fix YaCy text results returned as images
This commit is contained in:
parent
fe72c7a6fd
commit
71db7b1238
|
@ -75,7 +75,7 @@ def response(resp):
|
||||||
|
|
||||||
for result in search_results[0].get('items', []):
|
for result in search_results[0].get('items', []):
|
||||||
# parse image results
|
# parse image results
|
||||||
if result.get('image'):
|
if result.get('image') and result.get('width') and result.get('height'):
|
||||||
|
|
||||||
result_url = ''
|
result_url = ''
|
||||||
if 'url' in result:
|
if 'url' in result:
|
||||||
|
|
Loading…
Reference in New Issue