mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -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 {
|
||||
data: users,
|
||||
maxId: p.map(p => p.id).at(-1),
|
||||
minId: p.map(p => p.id)[0],
|
||||
pagination: {
|
||||
limit: limit,
|
||||
maxId: p.map(p => p.id).at(-1),
|
||||
minId: p.map(p => p.id)[0],
|
||||
}
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue