update tabs

This commit is contained in:
Luke Pulverenti 2016-03-24 14:11:03 -04:00
parent e400d34344
commit b095d9fd38
2 changed files with 3 additions and 2 deletions

View File

@ -60,7 +60,8 @@ namespace MediaBrowser.Model.Configuration
EnableNextEpisodeAutoPlay = true;
RememberAudioSelections = true;
RememberSubtitleSelections = true;
DisplayChannelsInline = true;
HidePlayedInLatest = true;
PlayDefaultAudioTrack = true;

View File

@ -124,7 +124,7 @@ namespace MediaBrowser.Server.Implementations.Library
var channels = channelResult.Items;
if (user.Configuration.DisplayChannelsInline && channels.Length > 0)
if (!user.Configuration.DisplayChannelsInline && channels.Length > 0)
{
list.Add(await _channelManager.GetInternalChannelFolder(cancellationToken).ConfigureAwait(false));
}