diff options
Diffstat (limited to 'server/helpers/activitypub.ts')
-rw-r--r-- | server/helpers/activitypub.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index c49142a04..d710f5c97 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts | |||
@@ -67,8 +67,8 @@ async function activityPubCollectionPagination (url: string, handler: ActivityPu | |||
67 | const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE) | 67 | const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE) |
68 | const result = await handler(start, count) | 68 | const result = await handler(start, count) |
69 | 69 | ||
70 | let next: string | 70 | let next: string | undefined |
71 | let prev: string | 71 | let prev: string | undefined |
72 | 72 | ||
73 | // Assert page is a number | 73 | // Assert page is a number |
74 | page = parseInt(page, 10) | 74 | page = parseInt(page, 10) |