1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-04 10:55:47 +00:00

nullcheck qqfile on upload files

This commit is contained in:
Henry Oswald 2016-08-02 15:36:59 +01:00
parent 928777b61c
commit 418d1c56da

View file

@ -27,8 +27,8 @@ module.exports = ProjectUploadController =
uploadFile: (req, res, next) ->
timer = new metrics.Timer("file-upload")
name = req.files.qqfile.originalname
path = req.files.qqfile.path
name = req.files.qqfile?.originalname
path = req.files.qqfile?.path
project_id = req.params.Project_id
folder_id = req.query.folder_id
if !name? or name.length == 0 or name.length > 150