Skip to content

Commit

Permalink
fixes #93306
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Mar 24, 2020
1 parent adc309b commit fa1ff06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/debugSession.ts
Expand Up @@ -234,7 +234,7 @@ export class DebugSession implements IDebugSession {

this.initialized = true;
this._onDidChangeState.fire();
this.model.setExceptionBreakpoints(this.raw!.capabilities.exceptionBreakpointFilters || []);
this.model.setExceptionBreakpoints((this.raw && this.raw.capabilities.exceptionBreakpointFilters) || []);
} catch (err) {
this.initialized = true;
this._onDidChangeState.fire();
Expand Down

0 comments on commit fa1ff06

Please sign in to comment.