Skip to content

Commit 4d7cc34

Browse files
committed
Fix /status command failure caused by avatar_url
1 parent f6ae6b9 commit 4d7cc34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cogs/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ async def status(self, ctx: ApplicationContext):
163163
localembed.add_field(name="Registered Users", value=f"{bot_users} users", inline=True)
164164
localembed.add_field(name="Uptime History", value="[here](https://stats.uptimerobot.com/PlKOmI0Aw8)")
165165
localembed.add_field(name="Release Notes", value="[latest](https://github.com/PyBotDevs/isobot/releases/latest)")
166-
localembed.set_footer(text=f"Requested by {ctx.author.name}", icon_url=ctx.author.avatar_url)
166+
localembed.set_footer(text=f"Requested by {ctx.author.name}", icon_url=ctx.author.avatar)
167167
await ctx.respond(embed=localembed)
168168

169169
@commands.slash_command(

0 commit comments

Comments
 (0)