diff options
Diffstat (limited to 'server/models/video/video-format-utils.ts')
-rw-r--r-- | server/models/video/video-format-utils.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/server/models/video/video-format-utils.ts b/server/models/video/video-format-utils.ts index 92bde7773..04e636a15 100644 --- a/server/models/video/video-format-utils.ts +++ b/server/models/video/video-format-utils.ts | |||
@@ -352,11 +352,20 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { | |||
352 | sensitive: video.nsfw, | 352 | sensitive: video.nsfw, |
353 | waitTranscoding: video.waitTranscoding, | 353 | waitTranscoding: video.waitTranscoding, |
354 | isLiveBroadcast: video.isLive, | 354 | isLiveBroadcast: video.isLive, |
355 | |||
356 | liveSaveReplay: video.isLive | ||
357 | ? video.VideoLive.saveReplay | ||
358 | : null, | ||
359 | |||
355 | state: video.state, | 360 | state: video.state, |
356 | commentsEnabled: video.commentsEnabled, | 361 | commentsEnabled: video.commentsEnabled, |
357 | downloadEnabled: video.downloadEnabled, | 362 | downloadEnabled: video.downloadEnabled, |
358 | published: video.publishedAt.toISOString(), | 363 | published: video.publishedAt.toISOString(), |
359 | originallyPublishedAt: video.originallyPublishedAt ? video.originallyPublishedAt.toISOString() : null, | 364 | |
365 | originallyPublishedAt: video.originallyPublishedAt | ||
366 | ? video.originallyPublishedAt.toISOString() | ||
367 | : null, | ||
368 | |||
360 | updated: video.updatedAt.toISOString(), | 369 | updated: video.updatedAt.toISOString(), |
361 | mediaType: 'text/markdown', | 370 | mediaType: 'text/markdown', |
362 | content: video.description, | 371 | content: video.description, |