Fix caption log
This commit is contained in:
parent
63436fc5ea
commit
586a7478b6
|
@ -17,7 +17,8 @@ const addVideoCaptionValidator = [
|
|||
.custom((_, { req }) => isVideoCaptionFile(req.files, 'captionfile'))
|
||||
.withMessage(
|
||||
'This caption file is not supported or too large. ' +
|
||||
`Please, make sure it is under ${CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE} and one of the following mimetypes: ` +
|
||||
`Please, make sure it is under ${CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max} bytes ` +
|
||||
'and one of the following mimetypes: ' +
|
||||
Object.keys(MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT).map(key => `${key} (${MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT[key]})`).join(', ')
|
||||
),
|
||||
|
||||
|
|
Loading…
Reference in New Issue