1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-21 13:50:16 +02:00

Merge pull request #2363 from dalf/fix-wikipedia-minor

[fix] wikipedia: minor fix: return no result instead of crash in some very few cases.
This commit is contained in:
Alexandre Flament 2020-12-07 18:33:37 +01:00 committed by GitHub
commit 923bc02c17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ def response(resp):
api_result = loads(resp.text)
# skip disambiguation pages
if api_result['type'] != 'standard':
if api_result.get('type') != 'standard':
return []
title = api_result['title']