From d79f10297f6ed22d17b56998e24cca6f06753a0c Mon Sep 17 00:00:00 2001 From: pickaxe <54486432+ProspectOre@users.noreply.github.com> Date: Sun, 22 Feb 2026 01:17:04 -0800 Subject: [PATCH] also skip modelByChannel in plugin-auto-enable channel iteration Co-Authored-By: Claude Opus 4.6 --- src/config/plugin-auto-enable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/plugin-auto-enable.ts b/src/config/plugin-auto-enable.ts index 40e82708600..55eab9905e4 100644 --- a/src/config/plugin-auto-enable.ts +++ b/src/config/plugin-auto-enable.ts @@ -319,7 +319,7 @@ function resolveConfiguredPlugins( const configuredChannels = cfg.channels as Record | undefined; if (configuredChannels && typeof configuredChannels === "object") { for (const key of Object.keys(configuredChannels)) { - if (key === "defaults") { + if (key === "defaults" || key === "modelByChannel") { continue; } channelIds.add(key);