aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--controllers/uploadController.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/controllers/uploadController.js b/controllers/uploadController.js
index 0207253..400b559 100644
--- a/controllers/uploadController.js
+++ b/controllers/uploadController.js
@@ -42,8 +42,14 @@ uploadsController.upload = function(req, res, next) {
if (token === undefined) token = ''
db.table('users').where('token', token).then((user) => {
+
+ if(user.length === 0)
+ if(config.private === true)
+ return res.status(401).json({ success: false, description: 'Invalid token provided' })
+
let userid
- if (user.length > 0) userid = user[0].id
+ if(user.length > 0)
+ userid = user[0].id
// Check if user is trying to upload to an album
let album