mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
update name sorting
This commit is contained in:
@@ -16,7 +16,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||
/// <returns>System.Int32.</returns>
|
||||
public int Compare(BaseItem x, BaseItem y)
|
||||
{
|
||||
return AlphanumComparator.CompareValues(GetValue(x), GetValue(y));
|
||||
return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase);
|
||||
}
|
||||
|
||||
private string GetValue(BaseItem item)
|
||||
|
||||
Reference in New Issue
Block a user