aboutsummaryrefslogtreecommitdiff
path: root/commands/userinfo.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/userinfo.js')
-rw-r--r--commands/userinfo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/userinfo.js b/commands/userinfo.js
index c03dfed..74193ef 100644
--- a/commands/userinfo.js
+++ b/commands/userinfo.js
@@ -27,7 +27,7 @@ module.exports.run = async (client, message) => {
.addField('Identity', `**User ID:** ${message.author.id} `)
.addField('Create and Join Times', '**Created At:** ' + message.member.user.createdAt.toUTCString() + '\n**Joined Guild At:** ' + message.member.joinedAt.toUTCString())
.setColor('#1fd619');
- message.channel.send({embed});
+ await message.channel.send({embed});
};
exports.conf = {