switch boxsets to new providers

This commit is contained in:
Luke Pulverenti
2014-01-30 16:23:54 -05:00
parent d7aeb68548
commit d0d54a503d
28 changed files with 791 additions and 492 deletions

View File

@@ -33,7 +33,7 @@ namespace MediaBrowser.Server.Implementations.Library
{
var user = _userManager.GetUserById(new Guid(query.UserId));
var inputItems = user.RootFolder.GetRecursiveChildren(user, null);
var inputItems = user.RootFolder.GetRecursiveChildren(user, null).Where(i => !(i is ICollectionFolder));
var results = await GetSearchHints(inputItems, query).ConfigureAwait(false);