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:
parent
928777b61c
commit
418d1c56da
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue