Changed sorting to case insensitive
This commit is contained in:
parent
2255bc9872
commit
bf1bbbdd3e
|
@ -1057,7 +1057,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
private static int VersionCompare(Tuple<long, string, string> a, Tuple<long, string, string> b)
|
private static int VersionCompare(Tuple<long, string, string> a, Tuple<long, string, string> b)
|
||||||
{
|
{
|
||||||
int compare = string.Compare(a.Item2, b.Item2, false, CultureInfo.InvariantCulture);
|
int compare = string.Compare(a.Item2, b.Item2, true, CultureInfo.InvariantCulture);
|
||||||
|
|
||||||
if (compare == 0)
|
if (compare == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user