Reputation: 67
I have made an embed where the bot should show the author's avatar but it is not displaying the image. The user ID shows up correctly.
const embed = new Discord.MessageEmbed()
.setAuthor(message.author.tag, message.author.avatarURL)
.addField('Trivia Answer', ans)
.setTimestamp()
.addField('userID', message.author.id);
Upvotes: 1
Views: 818
Reputation:
Are you using the latest discord.js version? If so it would be message.author.displayAvatarURL()
https://discord.js.org/#/docs/main/stable/class/User?scrollTo=defaultAvatarURL
Upvotes: 1