From 479f229198bdfcfd3a63d02babdddaa8b2209ccb Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 16 May 2016 19:55:32 +0200 Subject: Add check for the thumbnail in base64 (requests inter pods) --- server/helpers/customValidators.js | 2 ++ 1 file changed, 2 insertions(+) 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) { val.duration >= 0 && val.duration < constants.MAXIMUM_VIDEO_DURATION && validator.isLength(val.author, 1, constants.MAXIMUM_AUTHOR_LENGTH) && + validator.isBase64(val.thumbnailBase64) && + validator.isByteLength(val.thumbnailBase64, { min: 0, max: 20000 }) && validator.isDate(val.createdDate) }) } -- cgit v1.2.3