Skip to content

Commit

Permalink
fixes #54378
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Jul 16, 2018
1 parent 550a03d commit 3f02dfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ export class DebugService implements debug.IDebugService {
if (this.model.getReplElements().length > 0) {
this.panelService.openPanel(debug.REPL_ID, false).done(undefined, errors.onUnexpectedError);
}
if (this.model.getReplElements().length === 0) {
if (this.model.getSessions().length === 0) {
this.inDebugMode.reset();
}

Expand Down

0 comments on commit 3f02dfa

Please sign in to comment.