diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/middlewares/validators/videos.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/middlewares/validators/videos.ts b/server/middlewares/validators/videos.ts index f63348e66..3f881e1b5 100644 --- a/server/middlewares/validators/videos.ts +++ b/server/middlewares/validators/videos.ts | |||
@@ -24,8 +24,8 @@ import { | |||
24 | 24 | ||
25 | const videosAddValidator = [ | 25 | const videosAddValidator = [ |
26 | body('videofile').custom((value, { req }) => isVideoFile(req.files)).withMessage( | 26 | body('videofile').custom((value, { req }) => isVideoFile(req.files)).withMessage( |
27 | 'This file is not supported. Are you sure it is of the following type : ' | 27 | 'This file is not supported. Please, make sure it is of the following type : ' |
28 | + CONSTRAINTS_FIELDS.VIDEOS.EXTNAME | 28 | + CONSTRAINTS_FIELDS.VIDEOS.EXTNAME.join(', ') |
29 | ), | 29 | ), |
30 | body('name').custom(isVideoNameValid).withMessage('Should have a valid name'), | 30 | body('name').custom(isVideoNameValid).withMessage('Should have a valid name'), |
31 | body('category').custom(isVideoCategoryValid).withMessage('Should have a valid category'), | 31 | body('category').custom(isVideoCategoryValid).withMessage('Should have a valid category'), |