display video backdrops on detail page

This commit is contained in:
Luke Pulverenti
2013-04-28 13:21:56 -04:00
parent f09902c6a7
commit c9117070e3
4 changed files with 33 additions and 2 deletions

View File

@@ -275,7 +275,7 @@ namespace MediaBrowser.Server.Implementations.Library
var specialFeatures = items.OfType<Movie>().SelectMany(i => i.SpecialFeatures).ToList();
var localTrailers = items.SelectMany(i => i.LocalTrailers).ToList();
var themeSongs = items.SelectMany(i => i.ThemeSongs).ToList();
var videoBackdrops = items.SelectMany(i => i.ThemeSongs).ToList();
var videoBackdrops = items.SelectMany(i => i.VideoBackdrops).ToList();
items.AddRange(specialFeatures);
items.AddRange(localTrailers);