Fixed bad case

This commit is contained in:
emeric
2025-12-10 21:35:44 +01:00
parent 622efff7f5
commit 7fce60b4ff
+2 -2
View File
@@ -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));