浏览代码

[fix] block ixquick search url's

Thomas Pointhuber 9 年前
父节点
当前提交
996c96ffff
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      searx/engines/startpage.py

+ 4
- 0
searx/engines/startpage.py 查看文件

@@ -73,6 +73,10 @@ def response(resp):
73 73
         if re.match("^http(s|)://(www\.)?startpage\.com/do/search\?.*$", url):
74 74
             continue
75 75
 
76
+        # block ixquick search url's
77
+        if re.match("^http(s|)://(www\.)?ixquick\.com/do/search\?.*$", url):
78
+            continue
79
+
76 80
         title = escape(extract_text(link))
77 81
 
78 82
         if result.xpath('./p[@class="desc"]'):