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 authored Dec 11, 2023
1 parent 0e63272 commit 2ab1a70
Show file tree
Hide file tree
Showing 3 changed files with 4,635 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
Loading

0 comments on commit 2ab1a70

Please sign in to comment.