diff --git a/commands/main/weather.js b/commands/main/weather.js index 41bc2d5..7e863c4 100644 --- a/commands/main/weather.js +++ b/commands/main/weather.js @@ -15,7 +15,7 @@ module.exports = { const location = interaction.options.getString('location'); // Check if the image exists - const imageUrl = `https://wttr.in/${encodeURIComponent(location)}.png`; + const imageUrl = `https://wttr.in/${encodeURIComponent(location)}.png?u`; try { const response = await fetch(imageUrl); if (!response.ok) {