[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 video embed

+3 -3
+3 -3
services/appview/src/routes/getPosts.ts
··· 63 63 } else if (post.embed?.$type === 'so.sprk.embed.video') { 64 64 embed = { 65 65 $type: 'so.sprk.embed.video#view', 66 - cid: post.embed.cid, 67 - playlist: post.embed.playlist, 68 - thumbnail: post.embed.thumbnail, 66 + cid: post.cid, 67 + playlist: `https://videocdn.sprk.so/${post.authorDid}/${post.embed.video.ref.$link}`, 68 + thumbnail: `https://cdn.sprk.so/${post.authorDid}/${post.embed.video.ref.$link}/thumbnail`, 69 69 } satisfies SoSprkEmbedVideo.View 70 70 } 71 71