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

Merge pull request from Bond-009/convertfrom

pull/6657/head
Claus Vium 4 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
{
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