Update Emby.Server.Implementations/Sorting/AiredEpisodeOrderComparer.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
parent
8d45656c51
commit
d557a5371e
|
@ -151,7 +151,6 @@ namespace Emby.Server.Implementations.Sorting
|
||||||
if (comparisonResult == 0 && x.PremiereDate.HasValue && y.PremiereDate.HasValue)
|
if (comparisonResult == 0 && x.PremiereDate.HasValue && y.PremiereDate.HasValue)
|
||||||
{
|
{
|
||||||
comparisonResult = DateTime.Compare(x.PremiereDate.Value, y.PremiereDate.Value);
|
comparisonResult = DateTime.Compare(x.PremiereDate.Value, y.PremiereDate.Value);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return comparisonResult;
|
return comparisonResult;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user