diff options
Diffstat (limited to 'extension/src/debugPanel.ts')
-rw-r--r-- | extension/src/debugPanel.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts index dbec45ea..961eb150 100644 --- a/extension/src/debugPanel.ts +++ b/extension/src/debugPanel.ts @@ -3,6 +3,7 @@ import { getContinueServerUrl } from "./bridge"; import { getExtensionUri, getNonce, + getUniqueId, openEditorAndRevealRange, } from "./util/vscode"; import { RangeInFile } from "../schema/RangeInFile"; @@ -183,7 +184,7 @@ export function setupDebugPanel( const sessionId = await sessionIdPromise; panel.webview.postMessage({ type: "onLoad", - vscMachineId: vscode.env.machineId, + vscMachineId: getUniqueId(), apiUrl: getContinueServerUrl(), workspacePaths: vscode.workspace.workspaceFolders?.map( (folder) => folder.uri.fsPath |