From c74200288a198c84baed26c90d916f382fbea91e Mon Sep 17 00:00:00 2001 From: Bnyro Date: Sun, 5 May 2024 19:41:27 +0200 Subject: [PATCH] [fix] unit converter plugin: can't be disabled in settings --- searx/plugins/unit_converter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/searx/plugins/unit_converter.py b/searx/plugins/unit_converter.py index dd515aa72..6cebd1b20 100644 --- a/searx/plugins/unit_converter.py +++ b/searx/plugins/unit_converter.py @@ -10,6 +10,9 @@ name = "Unit converter plugin" description = gettext("Convert between units") default_on = True +plugin_id = "unit_converter" +preference_section = "general" + CONVERT_KEYWORDS = ["in", "to", "as"]