Skip to content

Commit b1fe56e

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/dap/session.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1948,7 +1948,7 @@ end
19481948

19491949
---@param event dap.ContinuedEvent
19501950
function Session:event_continued(event)
1951-
if event.allThreadsContinued then
1951+
if event.allThreadsContinued == nil or event.allThreadsContinued == true then
19521952
for _, t in pairs(self.threads) do
19531953
t.stopped = false
19541954
end

0 commit comments

Comments
 (0)