|
@@ -2084,7 +2084,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- if (GetParent() is AggregateFolder || this is Channel || this is BasePluginFolder)
|
|
|
+ if (GetParent() is AggregateFolder || this is BasePluginFolder)
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
@@ -2094,6 +2094,10 @@ namespace MediaBrowser.Controller.Entities
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
|
+ if (view != null && string.Equals(view.ViewType, CollectionType.Channels, StringComparison.OrdinalIgnoreCase))
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
|
|
|
return false;
|
|
|
}
|