From 2943151b3aecaef0bb5ebec2c7188495df0cbfaf Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 2 Oct 2019 16:37:22 +0200 Subject: [PATCH] fixes #81567 --- src/vs/workbench/contrib/debug/common/debugUtils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/contrib/debug/common/debugUtils.ts b/src/vs/workbench/contrib/debug/common/debugUtils.ts index 8dbe2680204..3af63c8db6e 100644 --- a/src/vs/workbench/contrib/debug/common/debugUtils.ts +++ b/src/vs/workbench/contrib/debug/common/debugUtils.ts @@ -196,6 +196,9 @@ function convertPaths(msg: DebugProtocol.ProtocolMessage, fixSourcePath: (toDA: case 'setBreakpoints': fixSourcePath(true, (request.arguments).source); break; + case 'breakpointLocations': + fixSourcePath(true, (request.arguments).source); + break; case 'source': fixSourcePath(true, (request.arguments).source); break; -- GitLab