From 8f37d7ffe1dc6526d358600ceb95345aff19b871 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 21 Feb 2026 05:31:53 +0900 Subject: [PATCH] fix(doctor): align isPinned logic with auto-updater to treat channel tags as not pinned --- src/cli/doctor/checks/system-plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/doctor/checks/system-plugin.ts b/src/cli/doctor/checks/system-plugin.ts index 8c8c7b2f..cd496924 100644 --- a/src/cli/doctor/checks/system-plugin.ts +++ b/src/cli/doctor/checks/system-plugin.ts @@ -76,7 +76,7 @@ export function getPluginInfo(): PluginInfo { registered: true, configPath, entry: pluginEntry.entry, - isPinned: pinnedVersion !== null, + isPinned: pinnedVersion !== null && /^\d+\.\d+\.\d+/.test(pinnedVersion), pinnedVersion, isLocalDev: pluginEntry.isLocalDev, }