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/95b3e08d4b0666f2b437663f38dcafa9183733fb/MediaBrowser.Model/Tasks/TaskCompletionStatus.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Tasks
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enum TaskCompletionStatus
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum TaskCompletionStatus
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The completed
|
|
|
|
|
/// </summary>
|
|
|
|
|
Completed,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The failed
|
|
|
|
|
/// </summary>
|
|
|
|
|
Failed,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Manually cancelled by the user
|
|
|
|
|
/// </summary>
|
|
|
|
|
Cancelled,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Aborted due to a system failure or shutdown
|
|
|
|
|
/// </summary>
|
|
|
|
|
Aborted
|
|
|
|
|
}
|
|
|
|
|
}
|