Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3129469

Browse files
committedSep 13, 2024·
prevent error in evaluateRequest when a variable is not found
1 parent ab2ffff commit 3129469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/mibase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ export class MI2DebugSession extends DebugSession {
715715
};
716716
this.sendResponse(response);
717717
}, msg => {
718-
this.sendErrorResponse(response, 7, msg.toString());
718+
this.sendResponse(response);
719719
});
720720
} else {
721721
this.miDebugger.sendUserInput(args.expression, threadId, level).then(output => {

0 commit comments

Comments
 (0)
Please sign in to comment.