mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
update cinema mode trailer selection
This commit is contained in:
@@ -102,10 +102,15 @@ namespace MediaBrowser.Server.Implementations.Intros
|
||||
|
||||
if (trailerTypes.Count > 0)
|
||||
{
|
||||
var excludeTrailerTypes = Enum.GetNames(typeof(TrailerType))
|
||||
.Select(i => (TrailerType)Enum.Parse(typeof(TrailerType), i, true))
|
||||
.Except(trailerTypes)
|
||||
.ToArray();
|
||||
|
||||
var trailerResult = _libraryManager.GetItemList(new InternalItemsQuery
|
||||
{
|
||||
IncludeItemTypes = new[] { typeof(Trailer).Name },
|
||||
TrailerTypes = trailerTypes.ToArray()
|
||||
ExcludeTrailerTypes = excludeTrailerTypes
|
||||
});
|
||||
|
||||
candidates.AddRange(trailerResult.Select(i => new ItemWithTrailer
|
||||
|
||||
Reference in New Issue
Block a user