Skip to content

Commit e0956c4

Browse files
committed
Improve messages
1 parent 31883e6 commit e0956c4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

cogs/modmail.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -606,13 +606,16 @@ async def sfw(self, ctx):
606606
@checks.thread_only()
607607
async def msglink(self, ctx, message_id: int):
608608
"""Retrieves the link to a message in the current thread."""
609-
message = await ctx.thread.recipient.fetch_message(message_id)
610-
if not message:
609+
try:
610+
message = await ctx.thread.recipient.fetch_message(message_id)
611+
except discord.NotFound:
611612
embed = discord.Embed(
612-
color=self.bot.main_color, description="Message no longer exists."
613+
color=self.bot.error_color, description="Message not found or no longer exists."
613614
)
614615
else:
615-
embed = discord.Embed(color=self.bot.main_color, description=message.jump_url)
616+
embed = discord.Embed(
617+
color=self.bot.main_color, description=message.jump_url
618+
)
616619
await ctx.send(embed=embed)
617620

618621
@commands.command()

0 commit comments

Comments
 (0)