Fix upload without files

This commit is contained in:
Chocobozzz 2021-08-05 14:24:03 +02:00
parent 27db78400c
commit 45570e9397
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -188,7 +188,7 @@ const videosAddResumableInitValidator = getCommonVideoEditAttributes().concat([
// multer required unsetting the Content-Type, now we can set it for node-uploadx
req.headers['content-type'] = 'application/json; charset=utf-8'
// place previewfile in metadata so that uploadx saves it in .META
if (req.files['previewfile']) req.body.previewfile = req.files['previewfile']
if (req.files?.['previewfile']) req.body.previewfile = req.files['previewfile']
return next()
}