We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f909eeb commit 93cd0e3Copy full SHA for 93cd0e3
src/debugger/xdap_tcp_client_impl.cpp
@@ -57,7 +57,7 @@ namespace xeus
57
send_dap_request(std::move(req));
58
auto rep = wait_for_message([](const nl::json& msg)
59
{
60
- return msg["command"] == "threads";
+ return msg.contains("command") && msg["command"] == "threads";
61
});
62
nl::json new_message = message;
63
new_message["body"]["threadList"] = nl::json::array();
0 commit comments