Browse Source

Revert Message.edit logic that deals with allowed_mentions

It made no sense here.
pull/6146/head
Rapptz 4 years ago
parent
commit
b00aaab0b2
  1. 37
      discord/message.py

37
discord/message.py

@ -958,14 +958,6 @@ class Message(Hashable):
are used instead. are used instead.
.. versionadded:: 1.4 .. versionadded:: 1.4
.. versionchanged:: 1.6
:attr:`~discord.Client.allowed_mentions` serves as defaults unconditionally.
mention_author: Optional[:class:`bool`]
Overrides the :attr:`~discord.AllowedMentions.replied_user` attribute
of ``allowed_mentions``.
.. versionadded:: 1.6
Raises Raises
------- -------
@ -1003,24 +995,17 @@ class Message(Hashable):
delete_after = fields.pop('delete_after', None) delete_after = fields.pop('delete_after', None)
mention_author = fields.pop('mention_author', None) try:
allowed_mentions = fields.pop('allowed_mentions', None) allowed_mentions = fields.pop('allowed_mentions')
if allowed_mentions is not None: except KeyError:
if self._state.allowed_mentions is not None: pass
allowed_mentions = self._state.allowed_mentions.merge(allowed_mentions) else:
allowed_mentions = allowed_mentions.to_dict() if allowed_mentions is not None:
if mention_author is not None: if self._state.allowed_mentions is not None:
allowed_mentions['replied_user'] = mention_author allowed_mentions = self._state.allowed_mentions.merge(allowed_mentions).to_dict()
fields['allowed_mentions'] = allowed_mentions else:
elif mention_author is not None: allowed_mentions = allowed_mentions.to_dict()
if self._state.allowed_mentions is not None: fields['allowed_mentions'] = allowed_mentions
allowed_mentions = self._state.allowed_mentions.to_dict()
allowed_mentions['replied_user'] = mention_author
else:
allowed_mentions = {'replied_user': mention_author}
fields['allowed_mentions'] = allowed_mentions
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: if fields:
data = await self._state.http.edit_message(self.channel.id, self.id, **fields) data = await self._state.http.edit_message(self.channel.id, self.id, **fields)

Loading…
Cancel
Save