Fix some warnings

This commit is contained in:
Bond_009
2021-11-15 15:57:07 +01:00
parent 9c74103fbe
commit 474b035d99
15 changed files with 36 additions and 32 deletions

View File

@@ -36,7 +36,7 @@ namespace Emby.Server.Implementations.Sorting
throw new ArgumentNullException(nameof(y));
}
return string.Compare(x.SortName, y.SortName, StringComparison.CurrentCultureIgnoreCase);
return string.Compare(x.SortName, y.SortName, StringComparison.OrdinalIgnoreCase);
}
}
}