-
Notifications
You must be signed in to change notification settings - Fork 355
Closed
Description
In Material I have added an "All Songs" action when listing an artist's albums. I populate this using the 'tracks' command as follows:
["tracks", 0, 1000, "sort:albumtrack", "tags:cdrilstyES", "artist_id:<ARTIST_ID>", "role_id:<ROLE>" ]
but it seems as if "role_id" is ignored if "tags:" is also specified.
e.g. the following returns a count of 379:
["tracks","0",1,"tags:cdrilstyES","artist_id:4320","role_id:ALBUMARTIST"]
but the following returns a count of 377:
["tracks","0",1,"artist_id:4320","role_id:ALBUMARTIST"]
I have tried changing "tags" by removing the parameters one by one, but only when "tags" is not specified is "role_id" respected.
Reactions are currently unavailable