Browse Source

Add replied_user key when no allowed_mentions is passed in

pull/7523/head
Rapptz 3 years ago
parent
commit
fa901afa3a
  1. 4
      discord/http.py

4
discord/http.py

@ -224,7 +224,9 @@ def handle_message_parameters(
try:
payload['allowed_mentions']['replied_user'] = mention_author
except KeyError:
pass
payload['allowed_mentions'] = {
'replied_user': mention_author,
}
if attachments is MISSING:
attachments = files # type: ignore

Loading…
Cancel
Save