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/e70a6d41f48b964a82f325244b57aaf86a51af85/Jellyfin.Data/Enums/SortOrder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Data/Enums/SortOrder.cs

19 lines
373 B

namespace Jellyfin.Data.Enums
6 years ago
{
/// <summary>
/// An enum representing the sorting order.
6 years ago
/// </summary>
public enum SortOrder
{
/// <summary>
/// Sort in increasing order.
6 years ago
/// </summary>
Ascending = 0,
6 years ago
/// <summary>
/// Sort in decreasing order.
6 years ago
/// </summary>
Descending = 1
6 years ago
}
}