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/8ee042483a2b6cc5f25f1eef05650a8ff4296923/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
}
}