aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-24 16:07:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-24 16:07:45 -0400
commitdb5ac92dd276425c9269eb56dbc43eeb7cc5c710 (patch)
tree3f7a3e902633933fc07483b0fcbc6bfeb4111d6b
parent2d3522593e2085eb6ab76a4981e5a93bae2bc837 (diff)
update login
-rw-r--r--MediaBrowser.Server.Implementations/Channels/ChannelManager.cs23
1 files changed, 12 insertions, 11 deletions
diff --git a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
index 8efc600e9..e01468d17 100644
--- a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
+++ b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
@@ -1322,17 +1322,18 @@ namespace MediaBrowser.Server.Implementations.Channels
}
else
{
- if (item.Name != info.Name)
- {
- item.Name = info.Name;
- forceUpdate = true;
- }
-
- if (item.CommunityRating != info.CommunityRating)
- {
- item.CommunityRating = info.CommunityRating;
- forceUpdate = true;
- }
+ // Can't do this right now due to channels that utilize the server's metadata services
+ //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;