restore channel view setting
This commit is contained in:
parent
bd082e9157
commit
6003ba4c58
|
@ -48,6 +48,7 @@ namespace MediaBrowser.Model.Configuration
|
||||||
public string[] PlainFolderViews { get; set; }
|
public string[] PlainFolderViews { get; set; }
|
||||||
|
|
||||||
public bool HidePlayedInLatest { get; set; }
|
public bool HidePlayedInLatest { get; set; }
|
||||||
|
public bool DisplayChannelsInline { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
||||||
|
|
|
@ -124,7 +124,14 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||||
|
|
||||||
var channels = channelResult.Items;
|
var channels = channelResult.Items;
|
||||||
|
|
||||||
|
if (user.Configuration.DisplayChannelsInline && channels.Length > 0)
|
||||||
|
{
|
||||||
|
list.Add(await _channelManager.GetInternalChannelFolder(cancellationToken).ConfigureAwait(false));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
list.AddRange(channels);
|
list.AddRange(channels);
|
||||||
|
}
|
||||||
|
|
||||||
if (_liveTvManager.GetEnabledUsers().Select(i => i.Id.ToString("N")).Contains(query.UserId))
|
if (_liveTvManager.GetEnabledUsers().Select(i => i.Id.ToString("N")).Contains(query.UserId))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user