[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(feed): getActorLikes & Reposts subject uri

+2 -2
+1 -1
api/so/sprk/feed/getActorLikes.ts
··· 63 63 64 64 const likesRes = await ctx.dataplane.likes.getActor(actorDid, limit, cursor); 65 65 66 - const items = likesRes.likes.map((l) => ({ post: { uri: l.uri } })); 66 + const items = likesRes.likes.map((l) => ({ post: { uri: l.subject } })); 67 67 68 68 return { 69 69 items,
+1 -1
api/so/sprk/feed/getActorReposts.ts
··· 67 67 cursor, 68 68 ); 69 69 70 - const items = repostsRes.reposts.map((r) => ({ post: { uri: r.uri } })); 70 + const items = repostsRes.reposts.map((r) => ({ post: { uri: r.subject } })); 71 71 72 72 return { 73 73 actorDid,