Skip to content

Commit

Permalink
Show DM attachments
Browse files Browse the repository at this point in the history
  • Loading branch information
ZechCodes committed Apr 15, 2024
1 parent 8361618 commit 5b3af65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/dm_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def on_message(self, message: discord.Message):
await channel.send(
embed=discord.Embed(
title=f"New DM From @{message.author} ({message.author.id})",
description=message.clean_content,
description=message.clean_content + "\n" + "\n".join(a.url for a in message.attachments),
color=0xFFE873,
).set_footer(text=f"Bound to DM message {message.author}")
)
Expand Down

0 comments on commit 5b3af65

Please sign in to comment.