From dadbb755c4fe9c0a7dba86a29131671cfdfa15f4 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Tue, 22 Aug 2023 19:45:22 -0400 Subject: [PATCH] Change from C to F --- commands/main/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {