From 5ad9f546b2b3404507b97a724444a21b74a8c990 Mon Sep 17 00:00:00 2001 From: Deluan Date: Sun, 23 Feb 2025 14:08:34 -0500 Subject: [PATCH] fix(server): role filters in Smart Playlists. See https://github.com/navidrome/navidrome/discussions/3676#discussioncomment-12286960 Signed-off-by: Deluan --- model/tag_mappings.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/tag_mappings.go b/model/tag_mappings.go index f0f8ac2f0..76b54df17 100644 --- a/model/tag_mappings.go +++ b/model/tag_mappings.go @@ -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()) }) }