diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-27 14:44:08 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-04-27 14:44:08 -0400 |
| commit | 92bdbe22b4db258996725d7452e628d8a456f8e2 (patch) | |
| tree | b0429f4e4bb9aff96e0dec9bdcbbb0f59de8e748 /MediaBrowser.Controller/LiveTv | |
| parent | 34b72a98cffe9247711f681a31344a56d6c4b912 (diff) | |
disable remember track selections for live channels
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvChannel.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs index 35b9a1959..2bb6cc182 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs @@ -45,6 +45,15 @@ namespace MediaBrowser.Controller.LiveTv set { } } + [IgnoreDataMember] + public override bool EnableRememberingTrackSelections + { + get + { + return false; + } + } + /// <summary> /// Gets or sets the number. /// </summary> |
