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

[fix] imdb: don't crash when there is no result

This commit is contained in:
Alexandre Flament 2021-12-06 21:48:53 +01:00
parent e4a2d354aa
commit 037cb7dd3d

View File

@ -57,7 +57,7 @@ def response(resp):
suggestions = json.loads(resp.text)
results = []
for entry in suggestions['d']:
for entry in suggestions.get('d', []):
# https://developer.imdb.com/documentation/key-concepts#imdb-ids
entry_id = entry['id']