diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 09:47:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 09:47:10 -0400 |
| commit | a19bfc8f07790c9108e09606b590b78fbcb512e6 (patch) | |
| tree | 2545c89e7f9ec59fc854097cea543678c664f20d /MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs | |
| parent | f98b611debd757dcf2b2862fa04f28d514a7fa3d (diff) | |
Added support for linked children
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs b/MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs index 71d014468..02ecb4fca 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs @@ -229,7 +229,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints { var user = _userManager.GetUserById(userId); - var collections = user.RootFolder.GetChildren(user).ToList(); + var collections = user.RootFolder.GetChildren(user, true).ToList(); var allRecursiveChildren = user.RootFolder.GetRecursiveChildren(user).ToDictionary(i => i.Id); |
