feat(subsonic): expose all album genres in a list of subsonic api

expose album genres from getArtist
This commit is contained in:
sentriz
2023-09-11 18:10:30 +01:00
parent d6b35f8c79
commit 749233db4e
8 changed files with 36 additions and 1 deletions

View File

@@ -22,6 +22,8 @@
"name": "album-0",
"songCount": 3,
"duration": 300,
"genre": "Unknown Genre",
"genres": ["Unknown Genre"],
"year": 2021
},
{
@@ -36,6 +38,8 @@
"name": "album-1",
"songCount": 3,
"duration": 300,
"genre": "Unknown Genre",
"genres": ["Unknown Genre"],
"year": 2021
},
{
@@ -50,6 +54,8 @@
"name": "album-2",
"songCount": 3,
"duration": 300,
"genre": "Unknown Genre",
"genres": ["Unknown Genre"],
"year": 2021
}
]