aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-07-17 00:05:18 +0200
committerGravatar GitHub <[email protected]>2020-07-17 00:05:18 +0200
commitcafa9f58f7432808cfac645d86e13875b033ba0a (patch)
treec56f0b5f96b4d0d11028f361f2ee00490f0b204c
parentIncidents: reduce log level of 403 exception (diff)
parentBugfix: Show ID for embed DM relays, too. (diff)
Merge branch 'master' into kwzrd/incidents
-rw-r--r--bot/cogs/dm_relay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/dm_relay.py b/bot/cogs/dm_relay.py
index 0dc15d4b1..0d8f340b4 100644
--- a/bot/cogs/dm_relay.py
+++ b/bot/cogs/dm_relay.py
@@ -99,7 +99,7 @@ class DMRelay(Cog):
await send_webhook(
webhook=self.webhook,
embed=e,
- username=message.author.display_name,
+ username=f"{message.author.display_name} ({message.author.id})",
avatar_url=message.author.avatar_url
)
except discord.HTTPException: