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

Merge pull request from Bond-009/invalidop

Fix InvalidOperationException when serializing MediaPathInfo
pull/6201/head^2
Claus Vium 4 years ago committed by GitHub
commit 95ca1d5487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,12 @@ namespace MediaBrowser.Model.Configuration
Path = path;
}
// Needed for xml serialization
public MediaPathInfo()
{
Path = string.Empty;
}
public string Path { get; set; }
public string? NetworkPath { get; set; }

Loading…
Cancel
Save