Skip to content

Commit

Permalink
Fixed transport layer byte-array handling. (#6763)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Dec 11, 2023
1 parent bf0a357 commit d829465
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ internal static void WriteFieldValue(
case Dictionary<string, object?> dict:
WriteDictionary(writer, dict);
break;

case byte[] bytes:
writer.WriteBase64StringValue(bytes);
break;

case IList list:
WriteList(writer, list);
Expand Down

0 comments on commit d829465

Please sign in to comment.