From e852fc1e5825c6da31dd91d935ab9a875a1cc3dc Mon Sep 17 00:00:00 2001 From: Thorsten Date: Tue, 28 Feb 2023 19:49:13 +0100 Subject: [PATCH] fix searx --- distbot/plugins/searx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/distbot/plugins/searx.py b/distbot/plugins/searx.py index a379517..228fe8a 100644 --- a/distbot/plugins/searx.py +++ b/distbot/plugins/searx.py @@ -45,6 +45,7 @@ class Searx(Worker): @staticmethod def fetch_all_searx_engines(): + return ["https://search.mdosch.de"] # working instance... since most engines on searx.space run without the json API (disabled by default since something 2022) response = requests.get("https://searx.space/data/instances.json") response.raise_for_status() searxes = [url for (url, details) in response.json().get("instances").items() if -- 2.39.2