Commit 6e90d3f0 authored by Matthieu - Greep's avatar Matthieu - Greep
Browse files

Fix Missing vote if vote is 0

parent 532a5ce1
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -10,11 +10,12 @@ const path = require('path'),
module.exports = function(app, sql, errorHandler) {
module.exports = function(app, sql, errorHandler) {
    app.post('/'+scriptName, function(req, res) {
    app.post('/'+scriptName, function(req, res) {
        const mapId = req.query.map || req.body.map,
        const mapId = req.query.map || req.body.map,
            player = req.query.player || req.body.player,
            player = req.query.player || req.body.player;
            vote = Number(req.query.vote || req.body.vote);
        let vote = req.query.vote || req.body.vote;
        if (!mapId) return errorHandler(res, 400, 'Missing map id');
        if (!mapId) return errorHandler(res, 400, 'Missing map id');
        if (!player) return errorHandler(res, 400, 'Missing player login');
        if (!player) return errorHandler(res, 400, 'Missing player login');
        if (!vote) return errorHandler(res, 400, 'Missing vote');
        if (!vote) return errorHandler(res, 400, 'Missing vote');
        vote = Number(vote);
        if (isNaN(vote)) return errorHandler(res, 400, 'Invalid vote');
        if (isNaN(vote)) return errorHandler(res, 400, 'Invalid vote');
        if (vote < 0 || vote > 100) return errorHandler(res, 400, 'Vote must be between 0 and 100');
        if (vote < 0 || vote > 100) return errorHandler(res, 400, 'Vote must be between 0 and 100');