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/82df226246515991b5a7dac576972ee4e6c0a646/MediaBrowser.Controller/Sorting/IBaseItemComparer.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Sorting/IBaseItemComparer.cs

18 lines
410 B

using System.Collections.Generic;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
6 years ago
namespace MediaBrowser.Controller.Sorting
{
/// <summary>
/// Interface IBaseItemComparer.
6 years ago
/// </summary>
public interface IBaseItemComparer : IComparer<BaseItem?>
6 years ago
{
/// <summary>
/// Gets the comparer type.
6 years ago
/// </summary>
ItemSortBy Type { get; }
6 years ago
}
}