refactor Genre domain type to include serverType and serverId

This commit is contained in:
jeffvli
2025-11-13 21:50:11 -08:00
parent 4f1d39d3c4
commit 173e00af3d
6 changed files with 25 additions and 6 deletions
@@ -647,7 +647,7 @@ export const SubsonicController: InternalControllerEndpoint = {
break;
}
const genres = results.map(ssNormalize.genre);
const genres = results.map((genre) => ssNormalize.genre(genre, apiClientProps.server));
return {
items: genres,