Fix debugging if(false) left
This commit is contained in:
parent
c6958de973
commit
8d2416f3c5
|
@ -181,7 +181,7 @@ module.exports = {
|
|||
if ([false, undefined, null].includes(quiz))
|
||||
return res.json({ error: 'invalid_params' })
|
||||
|
||||
if (false && quiz.responses !== undefined)
|
||||
if (quiz.responses !== undefined)
|
||||
return res.json({ error: 'already_sent_quiz' })
|
||||
|
||||
var responses = []
|
||||
|
|
Loading…
Reference in New Issue