From 7766c70137447ecbba0624bb05b00a6b92d86417 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 29 Apr 2020 21:08:48 +0300 Subject: [PATCH] fix --- server/controllers/contribute.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/controllers/contribute.js b/server/controllers/contribute.js index e6bede6..ff4e515 100644 --- a/server/controllers/contribute.js +++ b/server/controllers/contribute.js @@ -84,8 +84,6 @@ router.post('/response', upload.single('response'), async (req, res) => { token = crypto.randomBytes(32).toString('hex') } - await Contribution.create({ name, company, handle, socialType, token }) - console.log('Contribution is correct, uploading to storage') if (process.env.DISABLE_S3 !== 'true') { await uploadToS3({ filename: req.file.filename, contributionIndex }) @@ -98,6 +96,8 @@ router.post('/response', upload.single('response'), async (req, res) => { `./server/snark_files/response_${contributionIndex}` ) + await Contribution.create({ name, company, handle, socialType, token }) + console.log('Contribution finished.') res.json({ contributionIndex, token }) } catch (e) {