tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Merge branch 'main' into feat/feed-generator
tsiry-sandratraina.com
2 months ago
5263ba72
3585b379
+1
1 changed file
expand all
collapse all
unified
split
apps
api
src
xrpc
app
rocksky
artist
getArtists.ts
+1
apps/api/src/xrpc/app/rocksky/artist/getArtists.ts
···
75
75
return {
76
76
data: data.map((artist) => ({
77
77
...artist,
78
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
};