diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2025-10-09 16:06:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-09 16:06:46 +0200 |
| commit | 954f0f62b40b3c38c232c5ec51af12416b8cb2db (patch) | |
| tree | 6e41119643549e42733b6775e3d9fcd95bd20432 /searx | |
| parent | 898fbe7bc2a317eea07e1442eac5539b9bfa9405 (diff) | |
[fix] startpage engine - SafeSearch works in reverse (#5290)
The Name of the option is *disable_family_filter* -> we have to reverse the
meaning of the ascending safe-search filter level.
Closes: https://github.com/searxng/searxng/issues/5287
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/startpage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py index be623b19d..adffa4109 100644 --- a/searx/engines/startpage.py +++ b/searx/engines/startpage.py @@ -128,7 +128,7 @@ time_range_support = True safesearch = True time_range_dict = {'day': 'd', 'week': 'w', 'month': 'm', 'year': 'y'} -safesearch_dict = {0: '0', 1: '1', 2: '1'} +safesearch_dict = {0: '1', 1: '0', 2: '0'} # search-url base_url = 'https://www.startpage.com' |