Merge pull request #6641 from Bond-009/convertfrom

This commit is contained in:
Claus Vium
2021-10-03 14:03:46 +02:00
committed by GitHub

View File

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