mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
[JSON] Skip validation (#499)
This commit is contained in:
parent
06e89538cb
commit
bed0ade732
|
|
@ -21,7 +21,8 @@ namespace DiscordChatExporter.Domain.Exporting.Writers
|
|||
_writer = new Utf8JsonWriter(stream, new JsonWriterOptions
|
||||
{
|
||||
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
|
||||
Indented = true
|
||||
Indented = true,
|
||||
SkipValidation = true
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue