Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/3237fd9e5e2a2879d0d48acc4c7e5c0f7b397c38/MediaBrowser.Model/Entities/SortOrder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Entities/SortOrder.cs

17 lines
320 B

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum SortOrder
/// </summary>
public enum SortOrder
{
/// <summary>
/// The ascending
/// </summary>
Ascending,
/// <summary>
/// The descending
/// </summary>
Descending
}
}