diff options
Diffstat (limited to 'server/controllers/api/videos/index.ts')
-rw-r--r-- | server/controllers/api/videos/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/videos/index.ts b/server/controllers/api/videos/index.ts index 8048c568c..3ca5a9192 100644 --- a/server/controllers/api/videos/index.ts +++ b/server/controllers/api/videos/index.ts | |||
@@ -317,11 +317,11 @@ async function updateVideo (req: express.Request, res: express.Response) { | |||
317 | const hadPrivacyForFederation = videoInstance.hasPrivacyForFederation() | 317 | const hadPrivacyForFederation = videoInstance.hasPrivacyForFederation() |
318 | 318 | ||
319 | // Process thumbnail or create it from the video | 319 | // Process thumbnail or create it from the video |
320 | const thumbnailModel = req.files && req.files['thumbnailfile'] | 320 | const thumbnailModel = req.files?.['thumbnailfile'] |
321 | ? await createVideoMiniatureFromExisting(req.files['thumbnailfile'][0].path, videoInstance, ThumbnailType.MINIATURE, false) | 321 | ? await createVideoMiniatureFromExisting(req.files['thumbnailfile'][0].path, videoInstance, ThumbnailType.MINIATURE, false) |
322 | : undefined | 322 | : undefined |
323 | 323 | ||
324 | const previewModel = req.files && req.files['previewfile'] | 324 | const previewModel = req.files?.['previewfile'] |
325 | ? await createVideoMiniatureFromExisting(req.files['previewfile'][0].path, videoInstance, ThumbnailType.PREVIEW, false) | 325 | ? await createVideoMiniatureFromExisting(req.files['previewfile'][0].path, videoInstance, ThumbnailType.PREVIEW, false) |
326 | : undefined | 326 | : undefined |
327 | 327 | ||