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 987dc15 commit b8f061eCopy full SHA for b8f061e
src/Domain/HydraScript.Domain.BackEnd/Impl/Instructions/WithAssignment/AsString.cs
@@ -1,3 +1,4 @@
1
+using System.Text.Encodings.Web;
2
using System.Text.Json;
3
using System.Text.Json.Serialization;
4
@@ -10,7 +11,8 @@ public partial class AsString(IValue value) : Simple(value)
10
11
WriteIndented = true,
12
ReferenceHandler = ReferenceHandler.IgnoreCycles,
13
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
- NumberHandling = JsonNumberHandling.AllowNamedFloatingPointLiterals
14
+ NumberHandling = JsonNumberHandling.AllowNamedFloatingPointLiterals,
15
+ Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping
16
});
17
18
public override IAddress Execute(IExecuteParams executeParams)
0 commit comments