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

11 lines
160 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.LiveTv
{
public enum LiveTvServiceStatus
{
Ok = 0,
Unavailable = 1
}
}