aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Extensions/AlphanumericComparator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Jellyfin.Extensions/AlphanumericComparator.cs')
-rw-r--r--src/Jellyfin.Extensions/AlphanumericComparator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Jellyfin.Extensions/AlphanumericComparator.cs b/src/Jellyfin.Extensions/AlphanumericComparator.cs
index 98a32d5b2..1b19752bb 100644
--- a/src/Jellyfin.Extensions/AlphanumericComparator.cs
+++ b/src/Jellyfin.Extensions/AlphanumericComparator.cs
@@ -16,15 +16,15 @@ namespace Jellyfin.Extensions
/// <returns>A signed integer that indicates the relative values of <c>x</c> and <c>y</c>.</returns>
public static int CompareValues(string? s1, string? s2)
{
- if (s1 == null && s2 == null)
+ if (s1 is null && s2 is null)
{
return 0;
}
- else if (s1 == null)
+ else if (s1 is null)
{
return -1;
}
- else if (s2 == null)
+ else if (s2 is null)
{
return 1;
}