update playlist querying

This commit is contained in:
Luke Pulverenti
2016-03-20 14:39:20 -04:00
parent e95bea8954
commit 6807b2dd71
2 changed files with 10 additions and 2 deletions

View File

@@ -830,8 +830,11 @@ namespace MediaBrowser.Controller.Entities
{
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)