From fea8958e9933e35c4f01314eaa6dfd4fabfe143f Mon Sep 17 00:00:00 2001 From: lucky13820 Date: Wed, 16 Dec 2020 13:54:14 -0800 Subject: [PATCH] Fix the StartPage result title is showing the url Fix the issue 2395 where StartPage result title is showing the url. https://github.com/searx/searx/issues/2395 --- searx/engines/startpage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py index 16e846a1..cd8b132f 100644 --- a/searx/engines/startpage.py +++ b/searx/engines/startpage.py @@ -37,7 +37,7 @@ search_url = base_url + 'do/search' # ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"] # not ads: div[@class="result"] are the direct childs of div[@id="results"] results_xpath = '//div[@class="w-gl__result__main"]' -link_xpath = './/a[@class="w-gl__result-url result-link"]' +link_xpath = './/a[@class="w-gl__result-title result-link"]' content_xpath = './/p[@class="w-gl__description"]'