Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix the fallback to discover behavior on the home feed (#2546)

authored by

Paul Frazee and committed by
GitHub
8372c0c2 d35be77a

+2 -1
+2 -1
src/lib/api/feed/home.ts
··· 68 68 const res = await this.following.fetch({cursor, limit}) 69 69 returnCursor = res.cursor 70 70 posts = posts.concat(res.feed) 71 - if (res.feed.length === 0 || !cursor) { 71 + if (!returnCursor) { 72 + cursor = '' 72 73 posts.push(FALLBACK_MARKER_POST) 73 74 this.usingDiscover = true 74 75 }