Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/mono/wasm/debugger/BrowserDebugProxy/MonoProxy.cs
Co-authored-by: Ankit Jain <[email protected]>
  • Loading branch information
thaystg and radical authored Sep 13, 2022
commit 6eeccfd560cdfec8e009d04f6084dcd33acc9eef
3 changes: 2 additions & 1 deletion src/mono/wasm/debugger/BrowserDebugProxy/MonoProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ protected override async Task<bool> AcceptCommand(MessageId id, JObject parms, C
SendResponse(id, resp, token);
return true;
}
try {
try
{
string bpid = resp.Value["breakpointId"]?.ToString();
IEnumerable<object> locations = resp.Value["locations"]?.Values<object>();
var request = BreakpointRequest.Parse(bpid, args);
Expand Down