diff --git a/src/activate/registerCommands.ts b/src/activate/registerCommands.ts index b520e0cb8e..4aeb87168c 100644 --- a/src/activate/registerCommands.ts +++ b/src/activate/registerCommands.ts @@ -47,7 +47,7 @@ export const registerCommands = (options: RegisterCommandOptions) => { // Human Relay Dialog Command context.subscriptions.push( vscode.commands.registerCommand( - "roo-code.showHumanRelayDialog", + "roo-cline.showHumanRelayDialog", (params: { requestId: string; promptText: string }) => { if (getPanel()) { getPanel()?.webview.postMessage({ diff --git a/src/api/providers/human-relay.ts b/src/api/providers/human-relay.ts index 90a82b9bfe..b8bd4c2829 100644 --- a/src/api/providers/human-relay.ts +++ b/src/api/providers/human-relay.ts @@ -123,7 +123,7 @@ async function showHumanRelayDialog(promptText: string): Promise { resolve(response) @@ -131,7 +131,7 @@ async function showHumanRelayDialog(promptText: string): Promise void) => { registerHumanRelayCallback(requestId, callback) }, @@ -70,7 +70,7 @@ export function activate(context: vscode.ExtensionContext) { // Register human relay response processing command context.subscriptions.push( vscode.commands.registerCommand( - "roo-code.handleHumanRelayResponse", + "roo-cline.handleHumanRelayResponse", (response: { requestId: string; text?: string; cancelled?: boolean }) => { const callback = humanRelayCallbacks.get(response.requestId) if (callback) { @@ -86,7 +86,7 @@ export function activate(context: vscode.ExtensionContext) { ) context.subscriptions.push( - vscode.commands.registerCommand("roo-code.unregisterHumanRelayCallback", (requestId: string) => { + vscode.commands.registerCommand("roo-cline.unregisterHumanRelayCallback", (requestId: string) => { humanRelayCallbacks.delete(requestId) }), )