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/5d1b5d257f7cb782556ae394e5296c119226d676/Jellyfin.Data/Enums/SortOrder.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
namespace Jellyfin.Data.Enums
|
|
{
|
|
/// <summary>
|
|
/// An enum representing the sorting order.
|
|
/// </summary>
|
|
public enum SortOrder
|
|
{
|
|
/// <summary>
|
|
/// Sort in increasing order.
|
|
/// </summary>
|
|
Ascending = 0,
|
|
|
|
/// <summary>
|
|
/// Sort in decreasing order.
|
|
/// </summary>
|
|
Descending = 1
|
|
}
|
|
}
|