Subsonic API: put artist display name instead of a comma separated list
This commit is contained in:
@@ -107,7 +107,10 @@ namespace API::Subsonic
|
||||
}
|
||||
else if (!artists.empty())
|
||||
{
|
||||
albumNode.setAttribute("artist", Utils::joinArtistNames(artists));
|
||||
if (!release->getArtistDisplayName().empty())
|
||||
albumNode.setAttribute("artist", release->getArtistDisplayName());
|
||||
else
|
||||
albumNode.setAttribute("artist", Utils::joinArtistNames(artists));
|
||||
|
||||
if (artists.size() == 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user