From f05c357d573ca42a66c166635bee30c95442450b Mon Sep 17 00:00:00 2001 From: 5ymb01 <5ymb01ixm@gmail.com> Date: Mon, 2 Mar 2026 10:31:38 -0500 Subject: [PATCH] fix(config): use correct plugin ID key in secrets template (#275) The secrets template used "weather" as the key, but the weather plugin's ID is "ledmatrix-weather". Since ConfigManager deep-merges secrets into the main config by key, secrets under "weather" never reached the plugin config at config["ledmatrix-weather"], making the API key invisible to the plugin. Co-authored-by: 5ymb01 <5ymb01@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 --- config/config_secrets.template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config_secrets.template.json b/config/config_secrets.template.json index 8117ec27..d42de957 100644 --- a/config/config_secrets.template.json +++ b/config/config_secrets.template.json @@ -1,5 +1,5 @@ { - "weather": { + "ledmatrix-weather": { "api_key": "YOUR_OPENWEATHERMAP_API_KEY" }, "youtube": {