diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-15 23:35:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-15 23:35:53 +0100 |
| commit | f638cd08ea8132457a501edd983441c8d9193909 (patch) | |
| tree | 9beccf282c4ef2a5c035266c6d8477e0c5bc8e81 /Emby.Server.Implementations/Sorting/AlbumComparer.cs | |
| parent | 31b87130a2c817b81a72405377ed2fc3f018656b (diff) | |
| parent | 474b035d99c388e7d23280cefaa97760d4263f76 (diff) | |
Merge pull request #6852 from Bond-009/warn54
Fix some warnings
Diffstat (limited to 'Emby.Server.Implementations/Sorting/AlbumComparer.cs')
| -rw-r--r-- | Emby.Server.Implementations/Sorting/AlbumComparer.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Sorting/AlbumComparer.cs b/Emby.Server.Implementations/Sorting/AlbumComparer.cs index fe7dc84cb..4d09dda84 100644 --- a/Emby.Server.Implementations/Sorting/AlbumComparer.cs +++ b/Emby.Server.Implementations/Sorting/AlbumComparer.cs @@ -25,7 +25,7 @@ namespace Emby.Server.Implementations.Sorting /// <returns>System.Int32.</returns> public int Compare(BaseItem? x, BaseItem? y) { - return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase); + return string.Compare(GetValue(x), GetValue(y), StringComparison.OrdinalIgnoreCase); } /// <summary> @@ -35,9 +35,7 @@ namespace Emby.Server.Implementations.Sorting /// <returns>System.String.</returns> private static string? GetValue(BaseItem? x) { - var audio = x as Audio; - - return audio == null ? string.Empty : audio.Album; + return x is Audio audio ? audio.Album : string.Empty; } } } |
