Update Jellyfin.Extensions to .Net6

This commit is contained in:
Bond_009
2021-09-22 00:40:11 +02:00
parent be00480fe2
commit 086d5925c9
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ namespace Jellyfin.Extensions.Json.Converters
{
try
{
parsedValues[i] = _typeConverter.ConvertFrom(stringEntries[i].Trim());
parsedValues[i] = _typeConverter.ConvertFrom(stringEntries[i].Trim()) ?? throw new FormatException();
convertedCount++;
}
catch (FormatException)