Merge pull request #6641 from Bond-009/convertfrom

pull/6657/head
Claus Vium 3 years ago committed by GitHub
commit 1f779ce7cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save