소스 검색

[fix] indexing

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

+ 4
- 1
searx/engines/duckduckgo.py 파일 보기

@@ -23,7 +23,10 @@ def response(resp):
23 23
     doc = fromstring(resp.text)
24 24
 
25 25
     for r in doc.xpath(result_xpath):
26
-        res_url = r.xpath(url_xpath)[-1]
26
+        try:
27
+            res_url = r.xpath(url_xpath)[-1]
28
+        except:
29
+            continue
27 30
         if not res_url:
28 31
             continue
29 32
         title = html_to_text(''.join(r.xpath(title_xpath)))