aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-30 16:23:54 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-30 16:23:54 -0500
commitd0d54a503d6a7bd7743ee7cfb808fa9528343fea (patch)
tree78ed3dcb3b2b268bd5fea5475d940479a8a4e323 /MediaBrowser.Server.Implementations/Library
parentd7aeb685486df45e69753d93d6da0c3d6c7ecd18 (diff)
switch boxsets to new providers
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library')
-rw-r--r--MediaBrowser.Server.Implementations/Library/SearchEngine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/SearchEngine.cs b/MediaBrowser.Server.Implementations/Library/SearchEngine.cs
index 91112b409..12686f542 100644
--- a/MediaBrowser.Server.Implementations/Library/SearchEngine.cs
+++ b/MediaBrowser.Server.Implementations/Library/SearchEngine.cs
@@ -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);