X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Factivitypub.ts;h=a9de11fb0984ff8b76f95bb84259b9c6b5a03b71;hb=9a12f169c15b638fe78cf6e85a1993550a25e404;hp=37a251697ac63da9a7a0ec9f07aa7291ed80661b;hpb=2186386cca113506791583cb07d6ccacba7af4e0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index 37a251697..a9de11fb0 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts @@ -18,11 +18,13 @@ function activityPubContextify (data: T) { uuid: 'http://schema.org/identifier', category: 'http://schema.org/category', licence: 'http://schema.org/license', + subtitleLanguage: 'http://schema.org/subtitleLanguage', sensitive: 'as:sensitive', language: 'http://schema.org/inLanguage', views: 'http://schema.org/Number', stats: 'http://schema.org/Number', size: 'http://schema.org/Number', + fps: 'http://schema.org/Number', commentsEnabled: 'http://schema.org/Boolean', waitTranscoding: 'http://schema.org/Boolean', support: 'http://schema.org/Text' @@ -66,8 +68,8 @@ async function activityPubCollectionPagination (url: string, handler: ActivityPu const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE) const result = await handler(start, count) - let next: string - let prev: string + let next: string | undefined + let prev: string | undefined // Assert page is a number page = parseInt(page, 10)