mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[mastodon-client] Fix Link pagination for /v1/statuses/:id/reblogged_by
This commit is contained in:
parent
99de127376
commit
f800f1806c
1 changed files with 5 additions and 2 deletions
|
@ -237,8 +237,11 @@ export class NoteHelpers {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
data: users,
|
data: users,
|
||||||
|
pagination: {
|
||||||
|
limit: limit,
|
||||||
maxId: p.map(p => p.id).at(-1),
|
maxId: p.map(p => p.id).at(-1),
|
||||||
minId: p.map(p => p.id)[0],
|
minId: p.map(p => p.id)[0],
|
||||||
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue