A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz

Include genres when hydrating artists

+1
+1
apps/api/src/xrpc/app/rocksky/artist/getArtists.ts
··· 75 75 return { 76 76 data: data.map((artist) => ({ 77 77 ...artist, 78 + genres: artists.find((a) => a.id === artist.id)?.genres || [], 78 79 picture: artists.find((a) => a.id === artist.id)?.picture, 79 80 })), 80 81 };