diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/models/video/video-caption.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/models/video/video-caption.ts b/server/models/video/video-caption.ts index 6b240f116..5fbcd6e3b 100644 --- a/server/models/video/video-caption.ts +++ b/server/models/video/video-caption.ts | |||
@@ -195,7 +195,8 @@ export class VideoCaptionModel extends Model<Partial<AttributesOnly<VideoCaption | |||
195 | id: this.language, | 195 | id: this.language, |
196 | label: VideoCaptionModel.getLanguageLabel(this.language) | 196 | label: VideoCaptionModel.getLanguageLabel(this.language) |
197 | }, | 197 | }, |
198 | captionPath: this.getCaptionStaticPath() | 198 | captionPath: this.getCaptionStaticPath(), |
199 | updatedAt: this.updatedAt.toISOString() | ||
199 | } | 200 | } |
200 | } | 201 | } |
201 | 202 | ||