1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-01 09:00:15 +02:00

[fix] handling empty resultset II.

This commit is contained in:
asciimoo 2013-10-20 20:02:20 +02:00
parent 126682a6ce
commit 986c8e51a8

View File

@ -18,7 +18,7 @@ def response(resp):
search_res = loads(resp.text)
if 'responseData' not in search_res:
return []
if 'results' not in search_res['responseData']:
if 'results' not in search_res['responseData'] and search_res['responseData']['results']:
return []
for result in search_res['responseData']['results']:
url = result['originalContextUrl']