aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-format-utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video/video-format-utils.ts')
-rw-r--r--server/models/video/video-format-utils.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/models/video/video-format-utils.ts b/server/models/video/video-format-utils.ts
index 905e84449..0b0da4181 100644
--- a/server/models/video/video-format-utils.ts
+++ b/server/models/video/video-format-utils.ts
@@ -128,6 +128,7 @@ function videoModelToFormattedDetailsJSON (video: VideoModel): VideoDetails {
128 account: video.VideoChannel.Account.toFormattedJSON(), 128 account: video.VideoChannel.Account.toFormattedJSON(),
129 tags, 129 tags,
130 commentsEnabled: video.commentsEnabled, 130 commentsEnabled: video.commentsEnabled,
131 downloadingEnabled: video.downloadingEnabled,
131 waitTranscoding: video.waitTranscoding, 132 waitTranscoding: video.waitTranscoding,
132 state: { 133 state: {
133 id: video.state, 134 id: video.state,
@@ -259,6 +260,7 @@ function videoModelToActivityPubObject (video: VideoModel): VideoTorrentObject {
259 waitTranscoding: video.waitTranscoding, 260 waitTranscoding: video.waitTranscoding,
260 state: video.state, 261 state: video.state,
261 commentsEnabled: video.commentsEnabled, 262 commentsEnabled: video.commentsEnabled,
263 downloadingEnabled: video.downloadingEnabled,
262 published: video.publishedAt.toISOString(), 264 published: video.publishedAt.toISOString(),
263 updated: video.updatedAt.toISOString(), 265 updated: video.updatedAt.toISOString(),
264 mediaType: 'text/markdown', 266 mediaType: 'text/markdown',