24
1
Fork 0

bracket typo

This commit is contained in:
Abhinav Adduri 2017-07-13 14:56:28 -07:00
parent 3f89c2bf0a
commit ef9b15c1d7
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ app.post('/upload', (req, res, next) => {
if (
!meta.hasOwnProperty('aad') ||
!meta.hasOwnProperty('id') ||
!meta.hasOwnProperty('filename' ||
!validateIV(meta.id))
!meta.hasOwnProperty('filename') ||
!validateIV(meta.id)
) {
res.sendStatus(404);
return;