Skip to content

Commit

Permalink
Update src/PowerShellEditorServices/Services/DebugAdapter/Handlers/St…
Browse files Browse the repository at this point in the history
…ackTraceHandler.cs

Co-authored-by: Andy Jordan <[email protected]>
  • Loading branch information
JustinGrote and andyleejordan committed Nov 16, 2024
1 parent ff0262d commit cc2e2a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async Task<StackTraceResponse> Handle(StackTraceArguments request, Cancel

StackFrame breakpointLabel = CreateBreakpointLabel(invocationInfo);

if (skip == 0 && take == 1) // This indicates the client is doing an initial fetch, so we want to return quickly to unblock the UI and wait on the remaining stack frames for the susequent requests.
if (skip == 0 && take == 1) // This indicates the client is doing an initial fetch, so we want to return quickly to unblock the UI and wait on the remaining stack frames for the subsequent requests.
{
return new StackTraceResponse()
{
Expand Down

0 comments on commit cc2e2a1

Please sign in to comment.