Browse Source
Fix embed suppression when using client-wide allowed_mentions
pull/6146/head
Lilly Rose Berner
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/message.py
|
|
@ -1019,7 +1019,7 @@ class Message(Hashable): |
|
|
|
else: |
|
|
|
allowed_mentions = {'replied_user': mention_author} |
|
|
|
fields['allowed_mentions'] = allowed_mentions |
|
|
|
elif self._state.allowed_mentions is not None: |
|
|
|
elif self._state.allowed_mentions is not None and self._state.self_id == self.author.id: |
|
|
|
fields['allowed_mentions'] = self._state.allowed_mentions.to_dict() |
|
|
|
|
|
|
|
if fields: |
|
|
|