From 403f74d363193601815fafa3b10a006c4b034f5d Mon Sep 17 00:00:00 2001 From: lewis617 Date: Thu, 25 Jun 2026 17:05:32 +0800 Subject: [PATCH] fix: correct extension ID in /status version lookup --- src/session/messageHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session/messageHandler.ts b/src/session/messageHandler.ts index 86f9c74..0767139 100644 --- a/src/session/messageHandler.ts +++ b/src/session/messageHandler.ts @@ -720,7 +720,7 @@ export class MessageHandler { private async handleGetStatus(viewType?: 'sidebar' | 'tab' | 'window', windowId?: string) { const session = this.context.getChatSession(viewType || 'tab', windowId); const config = await this.configService.loadConfiguration(); - const version = vscode.extensions.getExtension('wave-code.wave-code')?.packageJSON?.version || ''; + const version = vscode.extensions.getExtension('wave-code.wave-vscode-chat')?.packageJSON?.version || ''; this.context.postMessage({ command: 'statusResponse',