|
|
|
@ -213,7 +213,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
|
|
|
|
query.AncestorWithPresentationUniqueKey = null;
|
|
|
|
|
query.SeriesPresentationUniqueKey = seriesKey;
|
|
|
|
|
query.IncludeItemTypes = new[] { BaseItemKind.Season };
|
|
|
|
|
query.OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) };
|
|
|
|
|
query.OrderBy = new[] { (ItemSortBy.IndexNumber, SortOrder.Ascending) };
|
|
|
|
|
|
|
|
|
|
if (user is not null && !user.DisplayMissingEpisodes)
|
|
|
|
|
{
|
|
|
|
@ -231,10 +231,6 @@ namespace MediaBrowser.Controller.Entities.TV
|
|
|
|
|
|
|
|
|
|
query.AncestorWithPresentationUniqueKey = null;
|
|
|
|
|
query.SeriesPresentationUniqueKey = seriesKey;
|
|
|
|
|
if (query.OrderBy.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
query.OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (query.IncludeItemTypes.Length == 0)
|
|
|
|
|
{
|
|
|
|
|