[JSON] Skip validation (#499)

pull/524/head
Lucas LaBuff 4 years ago committed by GitHub
parent 06e89538cb
commit bed0ade732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,8 @@ namespace DiscordChatExporter.Domain.Exporting.Writers
_writer = new Utf8JsonWriter(stream, new JsonWriterOptions _writer = new Utf8JsonWriter(stream, new JsonWriterOptions
{ {
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping, Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
Indented = true Indented = true,
SkipValidation = true
}); });
} }

Loading…
Cancel
Save