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 cf67cdf commit 712779fCopy full SHA for 712779f
src/JsonRpc/DapReciever.cs
@@ -57,7 +57,7 @@ protected virtual Renor GetRenor(JToken @object)
57
{
58
return new InvalidRequest(null, "No command given");
59
}
60
- return new Request(sequence, command.Value<string>(), request.TryGetValue("arguments", out var body) ? body : null);
+ return new Request(sequence, command.Value<string>(), request.TryGetValue("arguments", out var body) ? body : new JObject());
61
62
if (messageType == "response")
63
0 commit comments