From 259b0578d8cabca01816d0cdb9f9e04fd3474ab9 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 13 Jul 2021 21:02:29 -0400 Subject: [PATCH] change image to thumbnail --- functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.js b/functions.js index b835c68..095b963 100644 --- a/functions.js +++ b/functions.js @@ -87,7 +87,7 @@ module.exports = { { name: 'Pressure', value: `${weather.pressure_in}inHg`, inline: true }, { name: 'Relative Humidity', value: `${weather.humidity}%`, inline: true } ) - .setImage(`https:${weather.condition.icon}`) + .setThumbnail(`https:${weather.condition.icon}`) .setTimestamp() .setFooter(`@${author.username}#${author.discriminator}`); }