Allow Playlists access for users with allowed tags configured (#12686)

This commit is contained in:
elfalem 2024-09-22 20:50:29 -04:00 committed by GitHub
parent 5d5afe10e8
commit 9ec85a0f18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -191,6 +191,7 @@
- [pret0rian8](https://github.com/pret0rian)
- [jaina heartles](https://github.com/heartles)
- [oxixes](https://github.com/oxixes)
- [elfalem](https://github.com/elfalem)
# Emby Contributors

View File

@ -1608,7 +1608,7 @@ namespace MediaBrowser.Controller.Entities
}
var parent = GetParents().FirstOrDefault() ?? this;
if (parent is UserRootFolder or AggregateFolder)
if (parent is UserRootFolder or AggregateFolder or UserView)
{
return true;
}