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
Next Next commit
ignore messages from protocol extensions even for unknown context
  • Loading branch information
thaystg authored Oct 28, 2022
commit 79988a2b37147f7b9e73a392ac5cac37efaddaee
3 changes: 3 additions & 0 deletions src/mono/wasm/debugger/BrowserDebugProxy/MonoProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,9 @@ protected override async Task<bool> AcceptCommand(MessageId id, JObject parms, C
if (pauseOnException != PauseOnExceptionsKind.Unset)
_defaultPauseOnExceptions = pauseOnException;
}
//ignore messages from protocol extensions even for unknown context
if (method.StartsWith("DotnetDebugger.", StringComparison.Ordinal))
return true;
return false;
}

Expand Down