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/7a832045d6c166bdd59fd43d0166ca309a19193b/MediaBrowser.Controller/Providers/MetadataProviderPriority.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines when a provider should execute, relative to others
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum MetadataProviderPriority
|
|
|
|
|
{
|
|
|
|
|
// Run this provider at the beginning
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The first
|
|
|
|
|
/// </summary>
|
|
|
|
|
First = 1,
|
|
|
|
|
|
|
|
|
|
// Run this provider after all first priority providers
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The second
|
|
|
|
|
/// </summary>
|
|
|
|
|
Second = 2,
|
|
|
|
|
|
|
|
|
|
// Run this provider after all second priority providers
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The third
|
|
|
|
|
/// </summary>
|
|
|
|
|
Third = 3,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The fourth
|
|
|
|
|
/// </summary>
|
|
|
|
|
Fourth = 4,
|
|
|
|
|
|
|
|
|
|
Fifth = 5,
|
|
|
|
|
|
|
|
|
|
// Run this provider last
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The last
|
|
|
|
|
/// </summary>
|
|
|
|
|
Last = 999
|
|
|
|
|
}
|
|
|
|
|
}
|