From 84f48e9123042a135b331185b68a11802f091c9d Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Sat, 16 Dec 2023 17:19:57 +1100 Subject: [PATCH] Fix incorrect field name --- src/commands/whois.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 0d802cb..54031ca 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -55,7 +55,7 @@ export default { .setAuthor({name: 'Spotify', iconURL: 'https://cdn.discordapp.com/emojis/510214342034325504.webp?quality=lossless'}) .addFields( {name: 'Artist', value: spotifyStatus?.state, inline: true}, - {name: 'Album', value: spotifyStatus?.details, inline: true}, + {name: 'Title', value: spotifyStatus?.details, inline: true}, {name: 'Started', value: `\n`, inline: false} ) embedArray.push(spotifyEmbed)