mirror of
https://github.com/searxng/searxng.git
synced 2026-05-07 18:03:51 +02:00
[fix] mwmbl: crash if there's no result description available
This commit is contained in:
@@ -39,11 +39,12 @@ def response(resp):
|
|||||||
|
|
||||||
for result in json_results:
|
for result in json_results:
|
||||||
title_parts = [title['value'] for title in result['title']]
|
title_parts = [title['value'] for title in result['title']]
|
||||||
|
extract_parts = [extract['value'] for extract in result.get('extract', [])]
|
||||||
results.append(
|
results.append(
|
||||||
{
|
{
|
||||||
'url': result['url'],
|
'url': result['url'],
|
||||||
'title': ''.join(title_parts),
|
'title': ''.join(title_parts),
|
||||||
'content': result['extract'][0]['value'],
|
'content': ''.join(extract_parts),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user