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/f3b367628a8a36ced1db3ae1660c8b68542d1458/MediaBrowser.Controller/Resolvers/ResolverPriority.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Resolvers/ResolverPriority.cs

27 lines
507 B

namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Enum ResolverPriority
/// </summary>
public enum ResolverPriority
{
/// <summary>
/// The first
/// </summary>
First = 1,
/// <summary>
/// The second
/// </summary>
Second = 2,
/// <summary>
/// The third
/// </summary>
Third = 3,
/// <summary>
/// The last
/// </summary>
Last = 4
}
}