diff options
author | Adam Tauber <asciimoo@gmail.com> | 2017-09-26 23:25:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-26 23:25:01 +0200 |
commit | bd48df289fba3e7eecd05126e3c90fc6e8528c33 (patch) | |
tree | 705ca4fdc95761546fa4248f3bca5e51fd589a79 | |
parent | 6ebfdf0bb3e666dbc033e47f7e730966bde55b03 (diff) | |
parent | 043143c89892c7d4fd4f35766a7d7e4190774d51 (diff) | |
download | searxng-bd48df289fba3e7eecd05126e3c90fc6e8528c33.tar.gz searxng-bd48df289fba3e7eecd05126e3c90fc6e8528c33.zip |
Merge pull request #1035 from misnyo/voat
[fix] voat.co search xpath and url fixed
-rw-r--r-- | searx/settings.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index f262f4973..07b7d09cc 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -641,10 +641,10 @@ engines: engine: xpath shortcut: vo categories: social media - search_url : https://voat.co/search?q={query} - url_xpath : //p[contains(@class, "title")]/a/@href - title_xpath : //p[contains(@class, "title")]/a - content_xpath : //span[@class="domain"] + search_url : https://searchvoat.co/?t={query} + url_xpath : //div[@class="entry"]/p/a[@class="title"]/@href + title_xpath : //div[@class="entry"]/p/a[@class="title"] + content_xpath : //div[@class="entry"]/p/span[@class="domain"] timeout : 10.0 disabled : True |