Browse Source
Use display_avatar instead of avatar in converters example
pull/7548/head
Stocker
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
examples/converters.py
|
|
@ -30,7 +30,7 @@ async def userinfo(ctx: commands.Context, user: discord.User): |
|
|
|
# and can do the following: |
|
|
|
user_id = user.id |
|
|
|
username = user.name |
|
|
|
avatar = user.avatar.url |
|
|
|
avatar = user.display_avatar.url |
|
|
|
await ctx.send(f'User found: {user_id} -- {username}\n{avatar}') |
|
|
|
|
|
|
|
@userinfo.error |
|
|
|