#pragma warning disable CS1591 using Jellyfin.Data.Enums; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Sorting; using MediaBrowser.Model.Querying; namespace Emby.Server.Implementations.Sorting { public class IsFolderComparer : IBaseItemComparer { /// /// Gets the name. /// /// The name. public ItemSortBy Type => ItemSortBy.IsFolder; /// /// Compares the specified x. /// /// The x. /// The y. /// System.Int32. public int Compare(BaseItem? x, BaseItem? y) { return GetValue(x).CompareTo(GetValue(y)); } /// /// Gets the value. /// /// The x. /// System.String. private static int GetValue(BaseItem? x) { return x?.IsFolder ?? true ? 0 : 1; } } }