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

44 lines
845 B

6 years ago
namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Enum ResolverPriority.
6 years ago
/// </summary>
public enum ResolverPriority
{
/// <summary>
/// The highest priority. Used by plugins to bypass the default server resolvers.
/// </summary>
Plugin = 0,
6 years ago
/// <summary>
/// The first.
6 years ago
/// </summary>
First = 1,
6 years ago
/// <summary>
/// The second.
6 years ago
/// </summary>
Second = 2,
6 years ago
/// <summary>
/// The third.
6 years ago
/// </summary>
Third = 3,
/// <summary>
/// The Fourth.
/// </summary>
6 years ago
Fourth = 4,
/// <summary>
/// The Fifth.
/// </summary>
Fifth = 5,
6 years ago
/// <summary>
/// The last.
6 years ago
/// </summary>
Last = 6
6 years ago
}
}