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

11 lines
147 B

#pragma warning disable CS1591
6 years ago
namespace MediaBrowser.Model.Library
{
public enum PlayAccess
{
Full = 0,
None = 1
}
}