diff options
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/duckduckgo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/duckduckgo.py b/searx/engines/duckduckgo.py index feaa719d9..27171778d 100644 --- a/searx/engines/duckduckgo.py +++ b/searx/engines/duckduckgo.py @@ -331,7 +331,7 @@ def response(resp): zero_click_info_xpath = '//html/body/form/div/table[2]/tr[2]/td/text()' zero_click = extract_text(eval_xpath(doc, zero_click_info_xpath)).strip() - if zero_click and "Your IP address is" not in zero_click: + if zero_click and "Your IP address is" not in zero_click and "Your user agent:" not in zero_click: current_query = resp.search_params["data"].get("q") results.append( |