From 512e9f46ebc07732352a3ac623b2fd2a4c603b81 Mon Sep 17 00:00:00 2001 From: Pitu Date: Wed, 18 Jan 2017 03:40:16 -0300 Subject: [PATCH] lowercased headers --- controllers/uploadController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {