this repo has no description
atproto bluesky typescript express

forgot to do this oops

+2 -2
+2 -2
src/routes/mobile.ts
··· 45 45 const cursor = (req.query.cursor as string) || ""; 46 46 const did = await getActorDid(pubagent, req.params.handle); 47 47 const actor = await getActor(pubagent, did); 48 - const feed = await getActorFeed(pubagent, did); 48 + const feed = await getActorFeed(pubagent, did, cursor); 49 49 50 50 res.render("mobile/profile", { 51 51 layout: "mobile", ··· 99 99 async (req: Request, res: Response) => { 100 100 const cursor = (req.query.cursor as string) || ""; 101 101 const did = await getActorDid(pubagent, req.params.handle); 102 - const feed = await getFeed(pubagent, did, req.params.record); 102 + const feed = await getFeed(pubagent, did, req.params.record, cursor); 103 103 const feedData = await getFeedData(pubagent, did, req.params.record); 104 104 105 105 res.render("mobile/feed", {