Thanks to visit codestin.com
Credit goes to github.com

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
fix SA1000
  • Loading branch information
xtqqczze committed Feb 8, 2025
commit 3b6742ea955555cb759a829fccbe4eddd42e2564
2 changes: 1 addition & 1 deletion src/mono/browser/debugger/BrowserDebugProxy/MonoProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@ private Result AddCallStackInfoToException(Result _error, ExecutionContext conte
{
try {
var retStackTrace = new JArray();
foreach(var call in context.CallStack)
foreach (var call in context.CallStack)
{
if (call.Id < scopeId)
continue;
Expand Down
Loading