aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/helpers/customValidators.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/helpers/customValidators.js b/server/helpers/customValidators.js
index b95e2b9bb..5a0e70ffc 100644
--- a/server/helpers/customValidators.js
+++ b/server/helpers/customValidators.js
@@ -20,6 +20,8 @@ function eachIsRemoteVideosAddValid (values) {
20 val.duration >= 0 && 20 val.duration >= 0 &&
21 val.duration < constants.MAXIMUM_VIDEO_DURATION && 21 val.duration < constants.MAXIMUM_VIDEO_DURATION &&
22 validator.isLength(val.author, 1, constants.MAXIMUM_AUTHOR_LENGTH) && 22 validator.isLength(val.author, 1, constants.MAXIMUM_AUTHOR_LENGTH) &&
23 validator.isBase64(val.thumbnailBase64) &&
24 validator.isByteLength(val.thumbnailBase64, { min: 0, max: 20000 }) &&
23 validator.isDate(val.createdDate) 25 validator.isDate(val.createdDate)
24 }) 26 })
25} 27}