sync updates

This commit is contained in:
Luke Pulverenti
2015-02-18 23:37:44 -05:00
parent 8497c2926f
commit d451386f5d
13 changed files with 124 additions and 11 deletions

View File

@@ -52,6 +52,16 @@ namespace MediaBrowser.Controller.Entities.Audio
}
}
public override bool IsSaveLocalMetadataEnabled()
{
if (IsAccessedByName)
{
return true;
}
return base.IsSaveLocalMetadataEnabled();
}
private readonly Task _cachedTask = Task.FromResult(true);
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
{

View File

@@ -44,6 +44,11 @@ namespace MediaBrowser.Controller.Entities.Audio
return false;
}
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
/// <summary>
/// Gets a value indicating whether this instance is owned item.
/// </summary>