From 7fce60b4ff55ad1714823f10864e18afdcf08a70 Mon Sep 17 00:00:00 2001 From: emeric Date: Wed, 10 Dec 2025 21:35:44 +0100 Subject: [PATCH] Fixed bad case --- src/libs/subsonic/impl/responses/Song.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/subsonic/impl/responses/Song.cpp b/src/libs/subsonic/impl/responses/Song.cpp index b7a44fda..eb347a76 100644 --- a/src/libs/subsonic/impl/responses/Song.cpp +++ b/src/libs/subsonic/impl/responses/Song.cpp @@ -194,7 +194,7 @@ namespace lms::api::subsonic } { - trackResponse.createEmptyArrayChild("albumartists"); + trackResponse.createEmptyArrayChild("albumArtists"); trackResponse.createEmptyArrayChild("artists"); trackResponse.createEmptyArrayChild("contributors"); @@ -205,7 +205,7 @@ namespace lms::api::subsonic trackResponse.addArrayChild("artists", createArtistNode(artist)); break; case db::TrackArtistLinkType::ReleaseArtist: - trackResponse.addArrayChild("albumartists", createArtistNode(artist)); + trackResponse.addArrayChild("albumArtists", createArtistNode(artist)); break; default: trackResponse.addArrayChild("contributors", createContributorNode(link, artist));