diff options
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 650025205..b7eb24c4a 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -451,6 +451,7 @@ toFormatedJSON = function (this: VideoInstance) { | |||
451 | dislikes: this.dislikes, | 451 | dislikes: this.dislikes, |
452 | tags: map<TagInstance, string>(this.Tags, 'name'), | 452 | tags: map<TagInstance, string>(this.Tags, 'name'), |
453 | thumbnailPath: join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName()), | 453 | thumbnailPath: join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName()), |
454 | previewPath: join(STATIC_PATHS.PREVIEWS, this.getPreviewName()), | ||
454 | createdAt: this.createdAt, | 455 | createdAt: this.createdAt, |
455 | updatedAt: this.updatedAt | 456 | updatedAt: this.updatedAt |
456 | } | 457 | } |