Luke Pulverenti 9 éve
szülő
commit
8c8ad20465

+ 0 - 5
MediaBrowser.Model/Configuration/UserConfiguration.cs

@@ -29,8 +29,6 @@ namespace MediaBrowser.Model.Configuration
 
         public bool GroupMoviesIntoBoxSets { get; set; }
 
-        public string[] DisplayChannelsWithinViews { get; set; }
-
         public string[] ExcludeFoldersFromGrouping { get; set; }
         public string[] GroupedFolders { get; set; }
 
@@ -50,7 +48,6 @@ namespace MediaBrowser.Model.Configuration
         public string[] PlainFolderViews { get; set; }
 
         public bool HidePlayedInLatest { get; set; }
-        public bool DisplayChannelsInline { get; set; }
 
         /// <summary>
         /// Initializes a new instance of the <see cref="UserConfiguration" /> class.
@@ -62,8 +59,6 @@ namespace MediaBrowser.Model.Configuration
 
             LatestItemsExcludes = new string[] { };
             OrderedViews = new string[] { };
-            DisplayChannelsWithinViews = new string[] { };
-            DisplayChannelsInline = true;
 
             PlainFolderViews = new string[] { };
 

+ 1 - 10
MediaBrowser.Server.Implementations/Library/UserViewManager.cs

@@ -163,16 +163,7 @@ namespace MediaBrowser.Server.Implementations.Library
 
                 var channels = channelResult.Items;
 
-                var embeddedChannels = channels
-                    .Where(i => user.Configuration.DisplayChannelsInline || user.Configuration.DisplayChannelsWithinViews.Contains(i.Id.ToString("N")))
-                    .ToList();
-
-                list.AddRange(embeddedChannels);
-
-                if (channels.Length > embeddedChannels.Count)
-                {
-                    list.Add(await _channelManager.GetInternalChannelFolder(cancellationToken).ConfigureAwait(false));
-                }
+                list.AddRange(channels);
 
                 if (_liveTvManager.GetEnabledUsers().Select(i => i.Id.ToString("N")).Contains(query.UserId))
                 {