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
[api] fix getProfile xrpc
tsiry-sandratraina.com
8 months ago
4aecfac2
e27266ae
+1
-1
1 changed file
expand all
collapse all
unified
split
apps
api
src
xrpc
app
rocksky
actor
getProfile.ts
+1
-1
apps/api/src/xrpc/app/rocksky/actor/getProfile.ts
···
196
196
)
197
197
.where(eq(tables.users.did, did))
198
198
.execute()
199
199
-
.then(([result]) => result.spotify_accounts),
199
199
+
.then(([result]) => result?.spotify_accounts),
200
200
ctx.db
201
201
.select()
202
202
.from(tables.spotifyTokens)