Serialize GUID without dashes

This commit is contained in:
crobibero
2020-12-08 19:33:26 -07:00
parent 87e13b858a
commit c955f19634
2 changed files with 12 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Globalization;
using System.Text.Json;
using System.Text.Json.Serialization;
@@ -19,7 +20,7 @@ namespace MediaBrowser.Common.Json.Converters
/// <inheritdoc />
public override void Write(Utf8JsonWriter writer, Guid value, JsonSerializerOptions options)
{
writer.WriteStringValue(value);
writer.WriteStringValue(value.ToString("N", CultureInfo.InvariantCulture));
}
}
}