a887521d7a
Removed `omitempty` from the `Title` struct tag in the `Child` response type. The Subsonic/OpenSubsonic API spec requires `title` to be a mandatory field, but songs with empty titles caused the field to be omitted entirely, crashing clients like Symfonium during sync. Ref: https://support.symfonium.app/t/app-gets-stuck-on-syncing-large-database/13004/8
15 lines
830 B
XML
15 lines
830 B
XML
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.16.1" type="navidrome" serverVersion="v0.55.0" openSubsonic="true">
|
|
<albumList>
|
|
<album id="1" isDir="false" title="" sortName="sort name" mediaType="album" musicBrainzId="00000000-0000-0000-0000-000000000000" displayArtist="Display artist" displayAlbumArtist="Display album artist" explicitStatus="explicit">
|
|
<genres name="Genre 1"></genres>
|
|
<genres name="Genre 2"></genres>
|
|
<moods>mood1</moods>
|
|
<moods>mood2</moods>
|
|
<artists id="artist-1" name="Artist 1"></artists>
|
|
<artists id="artist-2" name="Artist 2"></artists>
|
|
<albumArtists id="album-artist-1" name="Artist 1"></albumArtists>
|
|
<albumArtists id="album-artist-2" name="Artist 2"></albumArtists>
|
|
</album>
|
|
</albumList>
|
|
</subsonic-response>
|