Luke Pulverenti 11 years ago
commit 1fe32171cd

@ -73,26 +73,11 @@ namespace MediaBrowser.Controller.Entities
{ {
get get
{ {
Dictionary<Guid,Guid> folderIds;
try
{
// Accessing ResolveArgs could involve file system access
folderIds = ResolveArgs.PhysicalLocations
.Select(f => f.GetMBId(typeof(Folder)))
.ToDictionary(i => i);
}
catch (IOException ex)
{
Logger.ErrorException("Error creating FolderIds for {0}", ex, Path);
folderIds = new Dictionary<Guid, Guid>();
}
var ourChildren = var ourChildren =
LibraryManager.RootFolder.RecursiveChildren.OfType<Folder>() LibraryManager.RootFolder.RecursiveChildren
.Where(i => folderIds.ContainsKey(i.Id)) .Where(i => i is Folder && i.Path != null && ResolveArgs.PhysicalLocations.Contains(i.Path, StringComparer.OrdinalIgnoreCase))
.SelectMany(c => c.Children); .Cast<Folder>().SelectMany(c => c.Children);
return new ConcurrentDictionary<Guid,BaseItem>(ourChildren.ToDictionary(i => i.Id)); return new ConcurrentDictionary<Guid,BaseItem>(ourChildren.ToDictionary(i => i.Id));
} }

Loading…
Cancel
Save