aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video/video.ts')
-rw-r--r--server/models/video/video.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts
index 8b58b393b..54fe54535 100644
--- a/server/models/video/video.ts
+++ b/server/models/video/video.ts
@@ -1000,7 +1000,7 @@ export class VideoModel extends Model<VideoModel> {
1000 descriptionPath: this.getDescriptionPath(), 1000 descriptionPath: this.getDescriptionPath(),
1001 channel: this.VideoChannel.toFormattedJSON(), 1001 channel: this.VideoChannel.toFormattedJSON(),
1002 account: this.VideoChannel.Account.toFormattedJSON(), 1002 account: this.VideoChannel.Account.toFormattedJSON(),
1003 tags: map<TagModel, string>(this.Tags, 'name'), 1003 tags: map(this.Tags, 'name'),
1004 commentsEnabled: this.commentsEnabled, 1004 commentsEnabled: this.commentsEnabled,
1005 files: [] 1005 files: []
1006 } 1006 }