aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-22 15:32:24 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-22 15:32:24 -0400
commit463b41354fde6f70d11b17de4ee8f7b643c55485 (patch)
treeb388b9f43fea59b90cd9c7091baec76143262619 /MediaBrowser.Controller/LiveTv
parentd7d5294ab5ec53429a906792ef8e7041cbdcd429 (diff)
restore missing file
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
-rw-r--r--MediaBrowser.Controller/LiveTv/LiveTvChannel.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs
index fede81faf4..6e2fe2495a 100644
--- a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs
+++ b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs
@@ -16,7 +16,11 @@ namespace MediaBrowser.Controller.LiveTv
{
var list = base.GetUserDataKeys();
- list.Insert(0, GetClientTypeName() + "-" + Name);
+ if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName)
+ {
+ list.Insert(0, GetClientTypeName() + "-" + Name);
+ }
+
return list;
}