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 and github-actions committed Oct 28, 2022
commit 708d0448dde69a9341f44cd2a2d5b491e406a28d
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 @@ -283,6 +283,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