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/c888b34a6219be0c06331e568d66a8fdf17bceaa/MediaBrowser.Model/Tasks/TaskState.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Tasks/TaskState.cs

24 lines
400 B

6 years ago
namespace MediaBrowser.Model.Tasks
{
/// <summary>
/// Enum TaskState.
6 years ago
/// </summary>
public enum TaskState
{
/// <summary>
/// The idle.
6 years ago
/// </summary>
Idle,
6 years ago
/// <summary>
/// The cancelling.
6 years ago
/// </summary>
Cancelling,
6 years ago
/// <summary>
/// The running.
6 years ago
/// </summary>
Running
}
}