Skip to content

Commit 0291179

Browse files
WORKAROUND: set success to true to allow messaging to work for now
1 parent 376a411 commit 0291179

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/JsonRpc/Serialization/DebugAdapterConverters/DapClientResponseConverter.cs

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public override void WriteJson(JsonWriter writer, Response value, JsonSerializer
3030
writer.WriteValue("response");
3131
writer.WritePropertyName("request_seq");
3232
writer.WriteValue(value.Id);
33+
// TODO: Dynamically set this based on handler execution.
34+
writer.WritePropertyName("success");
35+
writer.WriteValue(true);
3336
writer.WritePropertyName("command");
3437
writer.WriteValue(value.Request?.Method);
3538
if (value.Result != null)

0 commit comments

Comments
 (0)