Rohan Kumar
Rohan Kumar

Reputation: 67

User.avatarURL not showing image in MessageEmbed

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

Answers (1)

user13429955
user13429955

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

Related Questions