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/708a8115d5bd53fb079d5f0a9109b4df12f417f9/MediaBrowser.Model/Updates/PackageTargetSystem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Updates/PackageTargetSystem.cs

21 lines
403 B

namespace MediaBrowser.Model.Updates
{
/// <summary>
/// Enum PackageType
/// </summary>
public enum PackageTargetSystem
{
/// <summary>
/// Server
/// </summary>
Server,
/// <summary>
/// MB Theater
/// </summary>
MBTheater,
/// <summary>
/// MB Classic
/// </summary>
MBClassic
}
}