[API] Fix bug

This commit is contained in:
syuilo 2017-03-19 00:01:37 +09:00
parent c79d490ec9
commit f5937d0256

View file

@ -33,7 +33,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
// Get 'choice' parameter
const [choice, choiceError] =
$(params.choice).string()
$(params.choice).number()
.pipe(c => post.poll.choices.some(x => x.id == c))
.$;
if (choiceError) return rej('invalid choice param');