Skip to content

Commit

Permalink
prevent error in evaluateRequest when a variable is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
oltolm committed Sep 13, 2024
1 parent ab2ffff commit 3129469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mibase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ export class MI2DebugSession extends DebugSession {
};
this.sendResponse(response);
}, msg => {
this.sendErrorResponse(response, 7, msg.toString());
this.sendResponse(response);
});
} else {
this.miDebugger.sendUserInput(args.expression, threadId, level).then(output => {
Expand Down

0 comments on commit 3129469

Please sign in to comment.