Convert full ValueSequence

This commit is contained in:
crobibero 2021-03-13 08:41:16 -07:00
parent e814d8e2cf
commit 37b1b31a46
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
using System;
using System.Buffers;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
@ -30,7 +31,7 @@ namespace MediaBrowser.Common.Json.Converters
private static string GetRawValue(Utf8JsonReader reader)
{
var utf8Bytes = reader.HasValueSequence
? reader.ValueSequence.FirstSpan
? reader.ValueSequence.ToArray()
: reader.ValueSpan;
return Encoding.UTF8.GetString(utf8Bytes);
}