That was bad.

This commit is contained in:
Alexander Blair 2017-02-21 21:13:09 -08:00
parent 7b2ed80b6e
commit 906fb25670

View file

@ -505,7 +505,7 @@ secureRoutes.post('/changePayoutThreshold', function (req, res) {
}
threshold = global.support.decimalToCoin(threshold);
global.mysql.query("UPDATE users SET payout_threshold = ? WHERE id = ?", [threshold, req.decoded.id]).then(function () {
return res.json({'msg': 'Threshold updated, set to: ' + global.config.support.coinToDecimal(threshold)});
return res.json({'msg': 'Threshold updated, set to: ' + global.support.coinToDecimal(threshold)});
});
});