소스 검색

[fix] wikipedia autocomplete error handling

Adam Tauber 11 년 전
부모
커밋
d2f89f0446
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      searx/autocomplete.py

+ 3
- 1
searx/autocomplete.py 파일 보기

@@ -42,7 +42,9 @@ def wikipedia(query):
42 42
     url = 'https://en.wikipedia.org/w/api.php?action=opensearch&{0}&limit=10&namespace=0&format=json'  # noqa
43 43
 
44 44
     resp = loads(get(url.format(urlencode(dict(q=query)))).text)
45
-    return resp[1]
45
+    if len(resp) > 1:
46
+        return resp[1]
47
+    return []
46 48
 
47 49
 
48 50
 backends = {'dbpedia': dbpedia,