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

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/6553/head
Rob 3 years ago committed by GitHub
parent 8d45656c51
commit d557a5371e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save