improve offline support and add a web client indicator

This commit is contained in:
Luke Pulverenti
2013-07-05 12:17:32 -04:00
parent dc21adf1a4
commit 014f2949d7
2 changed files with 7 additions and 5 deletions

View File

@@ -635,8 +635,10 @@ namespace MediaBrowser.Controller.Entities
/// <returns>Task.</returns>
protected async virtual Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false)
{
var locationType = LocationType;
// Nothing to do here
if (LocationType != LocationType.FileSystem)
if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
{
return;
}