diff --git a/lib/games/configureGamePass.js b/lib/games/configureGamePass.js index 37cb5b289..5f7a8059b 100644 --- a/lib/games/configureGamePass.js +++ b/lib/games/configureGamePass.js @@ -53,14 +53,13 @@ function configureGamePass (gamePassId, name, description, price, icon, jar, tok } return http(httpOpt).then(function (res) { - const json = JSON.parse(res.body) if (res.statusCode === 200) { resolve({ gamePassId, name, description: description || '', ...price, - iconChanged: !!icon //Boolean Cast + iconChanged: !!icon // Boolean Cast }) } else { const priceComment = (typeof (price) === 'number') ? ` | NOTE: Price has successfully been changed to ${price}R.` : ''