aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-06 11:54:24 +0200
committerChocobozzz <me@florianbigard.com>2018-04-06 14:39:19 +0200
commitee28cdf1c488ac6ad6f3d06804b9c5e63eea1965 (patch)
tree23c614a34d09b565b3c428a77df72541d4653418 /server/models
parent228e84aa7e604c010ecc39bd54b62fefcca3b94e (diff)
downloadPeerTube-ee28cdf1c488ac6ad6f3d06804b9c5e63eea1965.tar.gz
PeerTube-ee28cdf1c488ac6ad6f3d06804b9c5e63eea1965.tar.zst
PeerTube-ee28cdf1c488ac6ad6f3d06804b9c5e63eea1965.zip
Upgrade server dependencies
Diffstat (limited to 'server/models')
-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 }