Browse Source

[fix] kickass: crash when no results

Bnyro 1 year ago
parent
commit
c3ab49cd90
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/kickass.py

+ 1 - 1
searx/engines/kickass.py

@@ -43,7 +43,7 @@ def response(resp):
     results = []
     dom = html.fromstring(resp.text)
 
-    search_res = eval_xpath_list(dom, '//table[contains(@class, "data")]//tr', None)
+    search_res = eval_xpath_list(dom, '//table[contains(@class, "data")]//tr[descendant::a]', None)
     if search_res is None:
         return []