rework channel checking

This commit is contained in:
Luke Pulverenti
2014-05-14 14:04:26 -04:00
parent be18983f91
commit a46cbfa02b
6 changed files with 16 additions and 43 deletions

View File

@@ -124,7 +124,6 @@ namespace MediaBrowser.Controller.Entities
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
{
CreateResolveArgs(directoryService);
ResetDynamicChildren();
return NullTaskResult;
}
@@ -150,8 +149,6 @@ namespace MediaBrowser.Controller.Entities
.ToList();
}
private IEnumerable<BaseItem> _actualChildren;
/// <summary>
/// Our children are actually just references to the ones in the physical root...
/// </summary>
@@ -170,10 +167,5 @@ namespace MediaBrowser.Controller.Entities
.SelectMany(c => c.Children)
.ToList();
}
public void ResetDynamicChildren()
{
_actualChildren = null;
}
}
}