Browse Source

Avoid calling PartialMessage.__init__ in Message.__init__

This prevents Message creation from crashing due to the public
interface's type checks potentially breaking future compatibility.
pull/7831/head
Rapptz 3 years ago
parent
commit
f7a79ff8d7
  1. 3
      discord/message.py

3
discord/message.py

@ -1375,7 +1375,8 @@ class Message(PartialMessage, Hashable):
channel: MessageableChannel,
data: MessagePayload,
) -> None:
super().__init__(channel=channel, id=int(data['id']))
self.channel: MessageableChannel = channel
self.id: int = int(data['id'])
self._state: ConnectionState = state
self.webhook_id: Optional[int] = utils._get_as_snowflake(data, 'webhook_id')
self.reactions: List[Reaction] = [Reaction(message=self, data=d) for d in data.get('reactions', [])]

Loading…
Cancel
Save