diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-06-21 18:46:48 +0100 |
|---|---|---|
| committer | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-06-21 18:46:48 +0100 |
| commit | bf1bbbdd3e72657d0e36a7a2b80c89d03fc40ba8 (patch) | |
| tree | 0a8f956bbb7ecc083028cdf5fea70bae7fe2745e | |
| parent | 2255bc98722e57e77e191d08b1485372c1e9a400 (diff) | |
Changed sorting to case insensitive
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 22a67b10c..830581d19 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1057,7 +1057,7 @@ namespace Emby.Server.Implementations 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) { |
