Skip to content

Commit

Permalink
Merge pull request microsoft#192117 from lukaszsamson/fix-event-name
Browse files Browse the repository at this point in the history
Fix invalid match on `exited` DAP event
  • Loading branch information
roblourens authored Sep 5, 2023
2 parents 43495ec + e9f7140 commit 7ead207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/rawDebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class RawDebugSession implements IDisposable {
case 'terminated':
this._onDidTerminateDebugee.fire(<DebugProtocol.TerminatedEvent>event);
break;
case 'exit':
case 'exited':
this._onDidExitDebugee.fire(<DebugProtocol.ExitedEvent>event);
break;
case 'progressStart':
Expand Down

0 comments on commit 7ead207

Please sign in to comment.