Skip to content

Commit eaf883b

Browse files
committed
Handle absent allThreadsContinued as true
See clarification: microsoft/debug-adapter-protocol#514
1 parent d0ac996 commit eaf883b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/dap/session.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1966,7 +1966,7 @@ end
19661966

19671967
---@param event dap.ContinuedEvent
19681968
function Session:event_continued(event)
1969-
if event.allThreadsContinued then
1969+
if event.allThreadsContinued == nil or event.allThreadsContinued == true then
19701970
for _, t in pairs(self.threads) do
19711971
t.stopped = false
19721972
end

0 commit comments

Comments
 (0)