tangled
alpha
login
or
join now
yoyle.city
/
skittr
6
fork
atom
this repo has no description
atproto
bluesky
typescript
express
6
fork
atom
overview
issues
3
pulls
pipelines
forgot to do this oops
lime360
4 months ago
f1cf187d
64baecc0
1/1
test.yml
success
20s
+2
-2
1 changed file
expand all
collapse all
unified
split
src
routes
mobile.ts
+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
48
-
const feed = await getActorFeed(pubagent, did);
48
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
102
-
const feed = await getFeed(pubagent, did, req.params.record);
102
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", {