diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-27 08:24:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-27 08:24:28 -0400 |
| commit | c643dd072e117aec2397e695c650e8a58be2fc6c (patch) | |
| tree | ea1701ef7408fb30c816d6495ba85c200f4bacdb /MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs | |
| parent | bdc90f02f2aea7fabc22413912752db56435bfd3 (diff) | |
added more direct querying to folder
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs b/MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs index dc96632f6..88f0e1e22 100644 --- a/MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs +++ b/MediaBrowser.Server.Implementations/Library/Validators/PeoplePostScanTask.cs @@ -49,7 +49,7 @@ namespace MediaBrowser.Server.Implementations.Library.Validators private void RunInternal(IProgress<double> progress, CancellationToken cancellationToken) { var userLibraries = _userManager.Users - .Select(i => new Tuple<Guid, List<BaseItem>>(i.Id, i.RootFolder.GetRecursiveChildren(i).ToList())) + .Select(i => new Tuple<Guid, IList<BaseItem>>(i.Id, i.RootFolder.GetRecursiveChildren(i, null))) .ToList(); var masterDictionary = new Dictionary<string, Dictionary<Guid, Dictionary<CountType, int>>>(StringComparer.OrdinalIgnoreCase); |
