added channel properties

This commit is contained in:
Luke Pulverenti
2016-06-20 13:08:13 -04:00
parent c05f0bea04
commit 3d2f6db1b1
5 changed files with 22 additions and 4 deletions

View File

@@ -1310,6 +1310,18 @@ namespace MediaBrowser.Server.Implementations.Channels
item.HomePageUrl = info.HomePageUrl;
}
var hasArtists = item as IHasArtist;
if (hasArtists != null)
{
hasArtists.Artists = info.Artists;
}
var hasAlbumArtists = item as IHasAlbumArtist;
if (hasAlbumArtists != null)
{
hasAlbumArtists.AlbumArtists = info.AlbumArtists;
}
var trailer = item as Trailer;
if (trailer != null)
{