Use a more descriptive function name

This commit is contained in:
crobibero
2020-12-13 08:15:26 -07:00
parent 8f4a4a3cc5
commit ee23d06154
12 changed files with 25 additions and 25 deletions

View File

@@ -75,7 +75,7 @@ namespace Emby.Server.Implementations.TV
{
parents = _libraryManager.GetUserRootFolder().GetChildren(user, true)
.Where(i => i is Folder)
.Where(i => !user.GetPreference<Guid>(PreferenceKind.LatestItemExcludes).Contains(i.Id))
.Where(i => !user.GetPreferenceValues<Guid>(PreferenceKind.LatestItemExcludes).Contains(i.Id))
.ToArray();
}