Fix warnings

This commit is contained in:
Claus Vium 2020-07-15 19:04:36 +02:00
parent a23920e2ad
commit 90fa1149fa

View file

@ -118,15 +118,16 @@ namespace Emby.Server.Implementations.TV
} }
var items = _libraryManager var items = _libraryManager
.GetItemList(new InternalItemsQuery(user) .GetItemList(
{ new InternalItemsQuery(user)
IncludeItemTypes = new[] {typeof(Episode).Name}, {
OrderBy = new[] {new ValueTuple<string, SortOrder>(ItemSortBy.DatePlayed, SortOrder.Descending)}, IncludeItemTypes = new[] { typeof(Episode).Name },
SeriesPresentationUniqueKey = presentationUniqueKey, OrderBy = new[] { new ValueTuple<string, SortOrder>(ItemSortBy.DatePlayed, SortOrder.Descending) },
Limit = limit, SeriesPresentationUniqueKey = presentationUniqueKey,
DtoOptions = new DtoOptions {Fields = new ItemFields[] {ItemFields.SeriesPresentationUniqueKey}, EnableImages = false}, Limit = limit,
GroupBySeriesPresentationUniqueKey = true DtoOptions = new DtoOptions { Fields = new[] { ItemFields.SeriesPresentationUniqueKey }, EnableImages = false },
}, parentsFolders.ToList()) GroupBySeriesPresentationUniqueKey = true
}, parentsFolders.ToList())
.Cast<Episode>() .Cast<Episode>()
.Where(episode => !string.IsNullOrEmpty(episode.SeriesPresentationUniqueKey)) .Where(episode => !string.IsNullOrEmpty(episode.SeriesPresentationUniqueKey))
.Select(GetUniqueSeriesKey); .Select(GetUniqueSeriesKey);