2
0
Эх сурвалжийг харах

Merge pull request #1871 from softworkz/ChannelItemUpdate

ChannelManager: Update Name and CommunityRating values when changed
Luke 9 жил өмнө
parent
commit
0441693540

+ 14 - 0
MediaBrowser.Server.Implementations/Channels/ChannelManager.cs

@@ -1320,6 +1320,20 @@ namespace MediaBrowser.Server.Implementations.Channels
                 item.Tags = info.Tags;
                 item.Tags = info.Tags;
                 item.HomePageUrl = info.HomePageUrl;
                 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;
             var hasArtists = item as IHasArtist;
             if (hasArtists != null)
             if (hasArtists != null)