[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 caption indexing

+6 -2
+6 -2
data-plane/indexing/plugins/post.ts
··· 63 63 uri: uri.toString(), 64 64 cid: cid.toString(), 65 65 authorDid: uri.host, 66 - text: obj.caption?.text || "", 67 - facets: obj.caption?.facets || [], 66 + caption: obj.caption 67 + ? { 68 + text: obj.caption.text || "", 69 + facets: obj.caption.facets || [], 70 + } 71 + : undefined, 68 72 media: obj.media || null, 69 73 sound: obj.sound || null, 70 74 langs: obj.langs || [],