aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob <ankenyr@gmail.com>2021-09-13 08:32:28 -0700
committerGitHub <noreply@github.com>2021-09-13 08:32:28 -0700
commitd557a5371e63c46c62c62f3c9e0bae1bed0d820c (patch)
tree1513a1b487a263421ca5edeb66e06db1297b6820
parent8d45656c51c684fbbf3e94319ac5ec050d5e44b4 (diff)
Update Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
-rw-r--r--Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs b/Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs
index fd422ffbf..037eb170a 100644
--- a/Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs
+++ b/Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs
@@ -151,7 +151,6 @@ namespace Emby.Server.Implementations.Sorting
if (comparisonResult == 0 && x.PremiereDate.HasValue && y.PremiereDate.HasValue)
{
comparisonResult = DateTime.Compare(x.PremiereDate.Value, y.PremiereDate.Value);
- }
}
return comparisonResult;