From 4dd922c94f4a4f5ace0d001ec8dd0afd389d48a1 Mon Sep 17 00:00:00 2001 From: nex Date: Mon, 13 Nov 2023 20:43:21 +0000 Subject: [PATCH] Debug --- cogs/other.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cogs/other.py b/cogs/other.py index 7aeccd9..f5f6980 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1996,7 +1996,8 @@ class OtherCog(commands.Cog): embed = discord.Embed( title=f"Failed to download model {model}:", description=f"HTTP {response.status_code}:\n```{error or ''}\n```", - colour=discord.Colour.red() + colour=discord.Colour.red(), + url=str(response.url) ) embed.set_footer(text="Using server {} ({})".format(host, try_hosts.get(host, "Other"))) return await msg.edit(embed=embed) @@ -2030,7 +2031,8 @@ class OtherCog(commands.Cog): embed = discord.Embed( title=f"Failed to download model {model}:", description=f"HTTP {response.status_code}:\n```{error or ''}\n```", - colour=discord.Colour.red() + colour=discord.Colour.red(), + url=str(response.url) ) embed.set_footer(text="Using server {} ({})".format(host, try_hosts.get(host, "Other"))) return await msg.edit(embed=embed)