diff options
author | Alexandre Flament <alex@al-f.net> | 2021-02-09 12:07:19 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-02-12 11:10:08 +0100 |
commit | c22d4c764cae6097c463045e86bc81b4becb2545 (patch) | |
tree | aed0a3d557b114179dddc1ff329b0dfbeaec6640 /searx/search/processors | |
parent | d76660463b9001137c092d61a2781464f8345316 (diff) | |
download | searxng-c22d4c764cae6097c463045e86bc81b4becb2545.tar.gz searxng-c22d4c764cae6097c463045e86bc81b4becb2545.zip |
[fix] duckduckgo engine: "!ddg !g" do not redirect to google
* searx understand "!ddg !g time" as : send "!g time" to DDG
* !g a DDG bang for Google: DDG return a HTTP redirect to Google
This commit adds a the allows_redirect param not to follow HTTP redirect.
The DDG engine returns a empty result as before without HTTP redirect.
Diffstat (limited to 'searx/search/processors')
-rw-r--r-- | searx/search/processors/online.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/search/processors/online.py b/searx/search/processors/online.py index 0cc175e1b..df0ab8c21 100644 --- a/searx/search/processors/online.py +++ b/searx/search/processors/online.py @@ -73,6 +73,10 @@ class OnlineProcessor(EngineProcessor): if max_redirects: request_args['max_redirects'] = max_redirects + # allow_redirects + if 'allow_redirects' in params: + request_args['allow_redirects'] = params['allow_redirects'] + # soft_max_redirects soft_max_redirects = params.get('soft_max_redirects', max_redirects or 0) |