this repo has no description
5
fork

Configure Feed

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

fix: cursor

TurtlePaw 5d88b046 e7e776ac

+4 -2
+4 -2
src/lib/hooks/useTimeline.tsx
··· 34 34 setTimelineLoading, 35 35 setCustomFeed, 36 36 setCustomFeedLoading, 37 + customFeeds, 37 38 } = useFeedStore(); 38 39 const seenImageUrls = useRef<Set<string>>(new Set()); 39 40 ··· 46 47 } else setTimelineLoading(true); 47 48 try { 48 49 if (feed && feed != "timeline") { 50 + const cursor = customFeeds?.[feed]?.cursor ?? undefined; 49 51 const response = feed.includes("list") 50 52 ? await agent.app.bsky.feed.getListFeed({ 51 - cursor: timeline.cursor, 53 + cursor: cursor, 52 54 limit: 100, 53 55 list: feed, 54 56 }) 55 57 : await agent.app.bsky.feed.getFeed({ 56 - cursor: timeline.cursor, 58 + cursor: cursor, 57 59 limit: 100, 58 60 feed: feed, 59 61 });