Skip to content
Advertisement

How to remove role from user in guild discordjs V12?

I have an economy system on my discord server and players can buy VIP for 30 days. Data are saved in firestore cloud database. The bot checks every 4 hours if someone has over his VIP and it should remove it but it doesn’t work.

Console says: Cannot read property 'roles' of undefined.

Here is the part of the code that does not work:

JavaScript

Thanks for the help

Advertisement

Answer

You shouldn’t assume the member is in the cache. In this case, it wasn’t. Instead, always fetch() the member:

JavaScript

P.S.: I think in v11 that used to work, but not anymore in v12.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement