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

Merge branch 'main' into feat/feed-generator

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