diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-23 11:31:29 +0200 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2021-10-12 21:01:02 +0200 |
| commit | f9c6393502ece3a678e530ca787efe2ea22b51d7 (patch) | |
| tree | 441777b67955178752d41f1496fcec1ac5877eba /searx/webapp.py | |
| parent | 4cc1ee8565e22442ae92ed5f2015749d684e6087 (diff) | |
[enh] verify that Tor proxy works every time searx starts
based on @MarcAbonce commit on searx
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 61992c99f..ab9c96712 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -1350,7 +1350,7 @@ if (not werkzeug_reloader or (werkzeug_reloader and os.environ.get("WERKZEUG_RUN_MAIN") == "true") ): plugin_initialize(app) - search_initialize(enable_checker=True) + search_initialize(enable_checker=True, check_network=True) def run(): |