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/3b07d73d405f3d7217e8d84aa7259fc0f9bb279e/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
|
|
}
|
|
}
|