on_user_update() does not show "before.avatar_url" when the avatar changes for the first time #6470
Unanswered
BrokenW1nd
asked this question in
Q&A
Replies: 1 comment 1 reply
-
If the bot is not online and receiving events from discord (like the I am not sure if this is the answer that you are looking for. If it is for your own bot and it is online when you (or any other user) changes their avatar then it could also be a problem with your own intents, as your bot's client will only receive events like import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
bot = commands.Bot(intents=intents) # The other parameters have been left out because they are unnecessary to explain |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
"on_user_update ()" does not show "before.avatar_url" when the bot was first launched, or it was disabled and the user changed the avatar and then changed again when the bot was enabled.
I also noticed this problem in the popular "MEE6"
Can this be solved somehow? Or write in support?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions