[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 simple-desc returning reply posts

+2 -2
+2 -2
services/feed-gen/src/algos/simpleDesc.ts
··· 6 6 const handler = async (db: Database, params: feedParams) => { 7 7 const { limit = 50, cursor } = params; 8 8 9 - // Build the query 10 - const query: any = {}; 9 + // Build the query, filtering out replies so only original posts are included 10 + const query: any = { reply: null }; 11 11 12 12 // Apply cursor if provided 13 13 if (cursor) {