1
0
mirror of https://github.com/searxng/searxng.git synced 2024-06-30 22:50:16 +02:00

Propagate error messages from YouTube API

This commit is contained in:
Noémi Ványi 2020-10-09 17:34:26 +02:00
parent 835d16cbb1
commit e158eeee4b

View File

@ -47,6 +47,9 @@ def response(resp):
search_results = loads(resp.text)
if 'error' in search_results and 'message' in search_results['error']:
raise Exception(search_results['error']['message'])
# return empty array if there are no results
if 'items' not in search_results:
return []