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/862018b5c20e27dc67619b8c0c212507685e8120/MediaBrowser.Controller/Providers/ProviderRefreshStatus.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enum ProviderRefreshStatus
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum ProviderRefreshStatus
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The success
|
|
|
|
|
/// </summary>
|
|
|
|
|
Success = 0,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The completed with errors
|
|
|
|
|
/// </summary>
|
|
|
|
|
CompletedWithErrors = 1,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The failure
|
|
|
|
|
/// </summary>
|
|
|
|
|
Failure = 2
|
|
|
|
|
}
|
|
|
|
|
}
|