Skip to content

Commit

Permalink
make sure that 'runInTerminal' request returns a 'body'; fixes #48680
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Apr 25, 2018
1 parent fb590e6 commit 6dfd02e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ export class RawDebugSession implements debug.ISession {
if (request.command === 'runInTerminal') {

this._debugger.runInTerminal(<DebugProtocol.RunInTerminalRequestArguments>request.arguments).then(_ => {
response.body = {};
this.debugAdapter.sendResponse(response);
}, err => {
response.success = false;
Expand Down

0 comments on commit 6dfd02e

Please sign in to comment.