Skip to content

Commit

Permalink
fix regression from removal of base64padding option
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jan 15, 2024
1 parent 763361c commit 334d21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CBOR/PeterO/Cbor/JSONOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public JSONOptions(string paramString) {
/// one described in the String constructor for this class.</returns>
public override string ToString() {
return new StringBuilder()
.Append(";replacesurrogates=")
.Append("replacesurrogates=")
.Append(this.ReplaceSurrogates ? "true" : "false")
.Append(";preservenegativezero=")
.Append(this.PreserveNegativeZero ? "true" : "false")
Expand Down

0 comments on commit 334d21c

Please sign in to comment.