Skip to content

Commit

Permalink
fixes #81567
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Oct 2, 2019
1 parent 085e845 commit 2943151
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vs/workbench/contrib/debug/common/debugUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ function convertPaths(msg: DebugProtocol.ProtocolMessage, fixSourcePath: (toDA:
case 'setBreakpoints':
fixSourcePath(true, (<DebugProtocol.SetBreakpointsArguments>request.arguments).source);
break;
case 'breakpointLocations':
fixSourcePath(true, (<DebugProtocol.BreakpointLocationsArguments>request.arguments).source);
break;
case 'source':
fixSourcePath(true, (<DebugProtocol.SourceArguments>request.arguments).source);
break;
Expand Down

0 comments on commit 2943151

Please sign in to comment.