aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-02-10 23:10:38 -0500
committerLuke <luke.pulverenti@gmail.com>2015-02-10 23:10:38 -0500
commit177a5d78bf66df61fae7248bbe1b5ccfde4971ac (patch)
tree55e5040e2e45d0c14f81f7e492ac4663fa672952 /MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
parentadab5b362c92cdfd7ac2ae39fb23da29fc67eef2 (diff)
parentf64043004f8bc3fb3199a44023f72730a059f68f (diff)
Merge pull request #1008 from MediaBrowser/dev
3.0.5518.2
Diffstat (limited to 'MediaBrowser.Server.Implementations/Channels/ChannelManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Channels/ChannelManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
index 37536a4ee9..2b17442dea 100644
--- a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
+++ b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
@@ -508,7 +508,7 @@ namespace MediaBrowser.Server.Implementations.Channels
SupportsLatestMedia = supportsLatest,
Name = channel.Name,
Id = channel.Id.ToString("N"),
- SupportsContentDownloading = isIndexable || supportsLatest,
+ SupportsContentDownloading = features.SupportsContentDownloading && (isIndexable || supportsLatest),
AutoRefreshLevels = features.AutoRefreshLevels
};
}