diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2023-09-19 16:45:11 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-09-19 21:03:02 +0200 |
commit | d013f51a2588fbe9bee05cd0e3f46c75bf785460 (patch) | |
tree | f0980a3d9a2647dbf017d8ed3d3a7eebfeea6deb /searx/webapp.py | |
parent | 0ce10046c4df5e2ac9802f89ac867dd83b1ad066 (diff) | |
download | searxng-d013f51a2588fbe9bee05cd0e3f46c75bf785460.tar.gz searxng-d013f51a2588fbe9bee05cd0e3f46c75bf785460.zip |
[fix] Search on category select without JavaScript PR #2740
Small addendum to #2740; search_on_category_select is now no longer a plugin.
Related: https://github.com/searxng/searxng/pull/2740#issuecomment-1725437584
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index b2a76ff92..2973f53bb 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -361,7 +361,7 @@ def get_client_settings(): 'http_method': req_pref.get_value('method'), 'infinite_scroll': req_pref.get_value('infinite_scroll'), 'translations': get_translations(), - 'search_on_category_select': req_pref.get_value('searx.plugins.search_on_category_select'), + 'search_on_category_select': req_pref.get_value('search_on_category_select'), 'hotkeys': req_pref.get_value('hotkeys'), 'theme_static_path': custom_url_for('static', filename='themes/simple'), } |