mirror of
https://github.com/searxng/searxng.git
synced 2025-10-27 00:32:30 -04:00
[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>
This commit is contained in:
parent
898fbe7bc2
commit
954f0f62b4
@ -128,7 +128,7 @@ time_range_support = True
|
|||||||
safesearch = True
|
safesearch = True
|
||||||
|
|
||||||
time_range_dict = {'day': 'd', 'week': 'w', 'month': 'm', 'year': 'y'}
|
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
|
# search-url
|
||||||
base_url = 'https://www.startpage.com'
|
base_url = 'https://www.startpage.com'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user