Explorar o código

update playlist querying

Luke Pulverenti %!s(int64=9) %!d(string=hai) anos
pai
achega
6807b2dd71

+ 5 - 2
MediaBrowser.Controller/Entities/Folder.cs

@@ -830,8 +830,11 @@ namespace MediaBrowser.Controller.Entities
         {
         {
             if (LinkedChildren.Count > 0)
             if (LinkedChildren.Count > 0)
             {
             {
-                Logger.Debug("Query requires post-filtering due to LinkedChildren");
-                return true;
+                if (!(this is ICollectionFolder))
+                {
+                    Logger.Debug("Query requires post-filtering due to LinkedChildren");
+                    return true;
+                }
             }
             }
 
 
             if (query.SortBy != null && query.SortBy.Length > 0)
             if (query.SortBy != null && query.SortBy.Length > 0)

+ 5 - 0
MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs

@@ -19,6 +19,7 @@ using System.Runtime.Serialization;
 using System.Threading;
 using System.Threading;
 using System.Threading.Tasks;
 using System.Threading.Tasks;
 using MediaBrowser.Controller.Channels;
 using MediaBrowser.Controller.Channels;
+using MediaBrowser.Controller.Playlists;
 using MediaBrowser.Model.LiveTv;
 using MediaBrowser.Model.LiveTv;
 
 
 namespace MediaBrowser.Server.Implementations.Persistence
 namespace MediaBrowser.Server.Implementations.Persistence
@@ -729,10 +730,12 @@ namespace MediaBrowser.Server.Implementations.Persistence
                     var topParent = item.GetTopParent();
                     var topParent = item.GetTopParent();
                     if (topParent != null)
                     if (topParent != null)
                     {
                     {
+                        //Logger.Debug("Item {0} has top parent {1}", item.Id, topParent.Id);
                         _saveItemCommand.GetParameter(index++).Value = topParent.Id.ToString("N");
                         _saveItemCommand.GetParameter(index++).Value = topParent.Id.ToString("N");
                     }
                     }
                     else
                     else
                     {
                     {
+                        //Logger.Debug("Item {0} has null top parent", item.Id);
                         _saveItemCommand.GetParameter(index++).Value = null;
                         _saveItemCommand.GetParameter(index++).Value = null;
                     }
                     }
 
 
@@ -2199,6 +2202,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
             typeof(MusicGenre),
             typeof(MusicGenre),
             typeof(MusicVideo),
             typeof(MusicVideo),
             typeof(Movie),
             typeof(Movie),
+            typeof(Playlist),
+            typeof(AudioPodcast),
             typeof(Trailer),
             typeof(Trailer),
             typeof(BoxSet),
             typeof(BoxSet),
             typeof(Episode),
             typeof(Episode),