From ea6ce2f552eb832c27d59e9a4667c54368f34399 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Mon, 25 Aug 2025 20:56:39 +0800 Subject: [PATCH] fix: set plugin enabled=true as default --- pkg/plugin/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/handler.py b/pkg/plugin/handler.py index 5ec36e68..a677b9be 100644 --- a/pkg/plugin/handler.py +++ b/pkg/plugin/handler.py @@ -97,7 +97,7 @@ class RuntimeConnectionHandler(handler.Handler): ) data = { - 'enabled': False, + 'enabled': True, 'priority': 0, 'plugin_config': {}, 'install_source': 'local',