aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--controllers/uploadController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/uploadController.js b/controllers/uploadController.js
index 97e7cb5..2828a19 100644
--- a/controllers/uploadController.js
+++ b/controllers/uploadController.js
@@ -29,7 +29,7 @@ uploadsController.upload = function(req, res, next){
let album = req.headers.album
if(album !== undefined)
- if(req.headers.adminAuth !== config.adminToken)
+ if(req.headers.adminauth !== config.adminToken)
return res.status(401).send('not-authorized')
upload(req, res, function (err) {