update GetChildCount

This commit is contained in:
Luke Pulverenti
2016-06-16 14:18:38 -04:00
parent fd3ff632d4
commit bcfe86dd16
4 changed files with 9 additions and 18 deletions

View File

@@ -79,6 +79,15 @@ namespace MediaBrowser.Controller.Entities.Audio
}
}
public override int GetChildCount(User user)
{
if (IsAccessedByName)
{
return 0;
}
return base.GetChildCount(user);
}
public override bool IsSaveLocalMetadataEnabled()
{
if (IsAccessedByName)