Browse Source

[fix] wikipedia: minor fix: return no result instead of crash in some very few cases.

In few cases, the JSON results doesn't contains the key 'type'.
Alexandre Flament 4 years ago
parent
commit
58d51e082d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/wikipedia.py

+ 1 - 1
searx/engines/wikipedia.py

@@ -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']