We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a499f7 commit f652102Copy full SHA for f652102
1 file changed
src/vs/workbench/parts/debug/electron-browser/debugService.ts
@@ -419,7 +419,7 @@ export class DebugService implements IDebugService {
419
private launchOrAttachToSession(session: IDebugSession, focus = true): TPromise<void> {
420
const dbgr = this.configurationManager.getDebugger(session.configuration.type);
421
return session.initialize(dbgr).then(() => {
422
- session.launchOrAttach(session.configuration).then(() => {
+ return session.launchOrAttach(session.configuration).then(() => {
423
if (focus) {
424
this.focusStackFrame(undefined, undefined, session);
425
}
0 commit comments