MrAugu / simple-discordjs-dashboard

Simplest discord bot dashboard in NodeJS.
MIT License
248 stars 100 forks source link

user.avatarURL #13

Closed mafineeek closed 3 years ago

mafineeek commented 3 years ago

Hi, how to get user.avatarURL in header.ejs?

MrAugu commented 3 years ago

You need to format the CDN url.

https://cdn.discordapp.com/:user_id/:hash.png?size=256

:user_id - Is user.id property. :hash - Is user.avatar property.

The user.avatar will be null if user does not have anu avatar, so you need to handle that condition as well.