fix(server): role filters in Smart Playlists.

See https://github.com/navidrome/navidrome/discussions/3676#discussioncomment-12286960

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-02-23 14:08:34 -05:00
parent 20297c2aea
commit 5ad9f546b2

View file

@ -200,9 +200,9 @@ func init() {
conf.AddHook(func() {
loadTagMappings()
// This is here to avoid cyclic imports. The criteria package needs to know all tag names, so they can be used in
// smart playlists
criteria.AddTagNames(tagNames())
// This is here to avoid cyclic imports. The criteria package needs to know all tag names, so they can be
// used in smart playlists
criteria.AddRoles(slices.Collect(maps.Keys(AllRoles)))
criteria.AddTagNames(tagNames())
})
}