diff --git a/commands/search/forecast.js b/commands/search/forecast.js index 0aa1cb75..6b20780a 100644 --- a/commands/search/forecast.js +++ b/commands/search/forecast.js @@ -40,7 +40,7 @@ module.exports = class ForecastCommand extends Command { .setTimestamp(); for (let i = 0; i < 6; i++) { const forecast = data.item.forecast[i]; - embed.addField(`❯ ${forecast.day} - ${forecast.data}`, + embed.addField(`❯ ${forecast.day} - ${forecast.date}`, stripIndents` **High**: ${forecast.high}°F **Low**: ${forecast.low}°F diff --git a/commands/search/weather.js b/commands/search/weather.js index 98dc5100..81dfab4a 100644 --- a/commands/search/weather.js +++ b/commands/search/weather.js @@ -46,7 +46,7 @@ module.exports = class WeatherCommand extends Command { .addField('❯ Condition', data.item.condition.text, true) .addField('❯ Temperature', - `${data.item.condition.temp}°F`, true) + `${data.item.condition.temp}°F`, true) .addField('❯ Humidity', data.atmosphere.humidity, true) .addField('❯ Pressure',