remove ChannelAudioItem

This commit is contained in:
Luke Pulverenti
2016-03-19 01:14:47 -04:00
parent 7b93b7a33c
commit f0c947851d
9 changed files with 48 additions and 150 deletions

View File

@@ -136,14 +136,7 @@ namespace MediaBrowser.Controller.Channels
public override bool IsVisibleStandalone(User user)
{
return IsVisibleStandaloneInternal(user, false) && IsChannelVisible(this, user);
}
internal static bool IsChannelVisible(BaseItem channelItem, User user)
{
var channel = ChannelManager.GetChannel(channelItem.ChannelId);
return channel.IsVisible(user);
return IsVisibleStandaloneInternal(user, false) && Channel.IsChannelVisible(this, user);
}
}
}