Update Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
Rob 2021-09-13 08:32:28 -07:00 committed by GitHub
parent 8d45656c51
commit d557a5371e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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;