ChannelManager: Update Name and CommunityRating values when changed

This commit is contained in:
softworkz 2016-06-22 23:23:50 +02:00
parent 461e9b2cdd
commit 71f8588b3a

View file

@ -1313,6 +1313,20 @@ namespace MediaBrowser.Server.Implementations.Channels
item.Tags = info.Tags;
item.HomePageUrl = info.HomePageUrl;
}
else
{
if (item.Name != info.Name)
{
item.Name = info.Name;
forceUpdate = true;
}
if (item.CommunityRating != info.CommunityRating)
{
item.CommunityRating = info.CommunityRating;
forceUpdate = true;
}
}
var hasArtists = item as IHasArtist;
if (hasArtists != null)