Fixed bad case
This commit is contained in:
@@ -194,7 +194,7 @@ namespace lms::api::subsonic
|
|||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
trackResponse.createEmptyArrayChild("albumartists");
|
trackResponse.createEmptyArrayChild("albumArtists");
|
||||||
trackResponse.createEmptyArrayChild("artists");
|
trackResponse.createEmptyArrayChild("artists");
|
||||||
trackResponse.createEmptyArrayChild("contributors");
|
trackResponse.createEmptyArrayChild("contributors");
|
||||||
|
|
||||||
@@ -205,7 +205,7 @@ namespace lms::api::subsonic
|
|||||||
trackResponse.addArrayChild("artists", createArtistNode(artist));
|
trackResponse.addArrayChild("artists", createArtistNode(artist));
|
||||||
break;
|
break;
|
||||||
case db::TrackArtistLinkType::ReleaseArtist:
|
case db::TrackArtistLinkType::ReleaseArtist:
|
||||||
trackResponse.addArrayChild("albumartists", createArtistNode(artist));
|
trackResponse.addArrayChild("albumArtists", createArtistNode(artist));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
trackResponse.addArrayChild("contributors", createContributorNode(link, artist));
|
trackResponse.addArrayChild("contributors", createContributorNode(link, artist));
|
||||||
|
|||||||
Reference in New Issue
Block a user