summaryrefslogtreecommitdiff
path: root/searx/preferences.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/preferences.py')
-rw-r--r--searx/preferences.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/preferences.py b/searx/preferences.py
index 9f810ec72..eadb0970c 100644
--- a/searx/preferences.py
+++ b/searx/preferences.py
@@ -316,7 +316,7 @@ class PluginsSetting(BooleanChoices):
"""Plugin settings"""
def __init__(self, default_value, plugins: Iterable[searx.plugins.Plugin]):
- super().__init__(default_value, {plugin.id: plugin.default_on for plugin in plugins})
+ super().__init__(default_value, {plugin.id: plugin.active for plugin in plugins})
def transform_form_items(self, items):
return [item[len('plugin_') :] for item in items]