commit f82f204d54d205e9de4340bc15c4b763f5925e15 parent 49338e7abe3d70ba0fc355119a4485eefcbf9356 Author: Demonstrandum <moi@knutsen.co> Date: Sun, 2 Aug 2020 15:19:41 +0100 setFooter URL argument position correction. Diffstat:
M | lib/commands/weather.ts | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/commands/weather.ts b/lib/commands/weather.ts @@ -95,8 +95,8 @@ export default async (home_scope: HomeScope) => { + ` ${properties.timeseries[0].data.instant.details.wind_speed} ㎧`, inline: true }) .setFooter( - 'https://0x0.st/ixdO.png', - 'Data provided by meteorologisk institutt'); + 'Data provided by Meteorologisk institutt (met.no)', + 'https://0x0.st/ixdO.png'); message.channel.send(embed); };