Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d4373a2ddb3df360554db7a949d8b92e135e63a8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use ConvertFrom with invariant culture instead of current culture

pull/6641/head
Bond_009 4 years ago
parent dd5e9e3fc6
commit d4373a2ddb

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

Loading…
Cancel
Save