[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 images url

+2 -2
+2 -2
services/appview/src/utils/post-transformer.ts
··· 49 49 embed = { 50 50 $type: 'so.sprk.embed.images#view', 51 51 images: post.embed.images.map((img: any) => ({ 52 - thumb: `https://media.bsky.app/img/medium/${post.authorDid}/${img.image.ref.$link}/webp`, 53 - fullsize: `https://media.bsky.app/img/full/${post.authorDid}/${img.image.ref.$link}/webp`, 52 + thumb: `https://media.sprk.so/img/medium/${post.authorDid}/${img.image.ref.$link}/webp`, 53 + fullsize: `https://media.sprk.so/img/full/${post.authorDid}/${img.image.ref.$link}/webp`, 54 54 alt: img.alt, 55 55 aspectRatio: img.aspectRatio, 56 56 })),