mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Use CleanName for sorting case insensitive
This commit is contained in:
parent
709d0bb231
commit
8cb077402f
@ -44,7 +44,7 @@ public static class OrderMapper
|
|||||||
ItemSortBy.DateCreated => e => e.DateCreated,
|
ItemSortBy.DateCreated => e => e.DateCreated,
|
||||||
ItemSortBy.PremiereDate => e => (e.PremiereDate ?? (e.ProductionYear.HasValue ? DateTime.MinValue.AddYears(e.ProductionYear.Value - 1) : null)),
|
ItemSortBy.PremiereDate => e => (e.PremiereDate ?? (e.ProductionYear.HasValue ? DateTime.MinValue.AddYears(e.ProductionYear.Value - 1) : null)),
|
||||||
ItemSortBy.StartDate => e => e.StartDate,
|
ItemSortBy.StartDate => e => e.StartDate,
|
||||||
ItemSortBy.Name => e => EF.Functions.Collate(e.Name, "NOCASE"),
|
ItemSortBy.Name => e => e.CleanName,
|
||||||
ItemSortBy.CommunityRating => e => e.CommunityRating,
|
ItemSortBy.CommunityRating => e => e.CommunityRating,
|
||||||
ItemSortBy.ProductionYear => e => e.ProductionYear,
|
ItemSortBy.ProductionYear => e => e.ProductionYear,
|
||||||
ItemSortBy.CriticRating => e => e.CriticRating,
|
ItemSortBy.CriticRating => e => e.CriticRating,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user