aboutsummaryrefslogtreecommitdiff
path: root/commands/quote.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/quote.js')
-rw-r--r--commands/quote.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/quote.js b/commands/quote.js
index f19675f..72bd07b 100644
--- a/commands/quote.js
+++ b/commands/quote.js
@@ -28,14 +28,16 @@ module.exports.run = async (client, message, args) => {
quoteID = quoteList[random[0] % quoteList.length].id;
}
- const quote = await quoteDB.findOne({ where: { id: quoteID } })
+ const quote = await quoteDB.findOne({ where: { id: quoteID } });
+
+ let userSubmitter = await client.users.fetch(quote.submitter);
if (quote) {
const quoteEmbed = new MessageEmbed()
.setAuthor({ name: quote.author, iconURL: quote.authorImage })
.setDescription(quote.quote)
.setColor('#1fd619')
- .setFooter(`- ${quote.year}\nSubmitted by ${quote.submitter}`);
+ .setFooter(`- ${quote.year}\nSubmitted by ${userSubmitter.username}`);
await message.reply({ embeds: [quoteEmbed] })
} else {