Browse Source

Fix StageChannel.last_message_id always being None

pull/9426/head
owocado 2 years ago
committed by GitHub
parent
commit
0e727d8e6d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/state.py

2
discord/state.py

@ -615,7 +615,7 @@ class ConnectionState(Generic[ClientT]):
if self._messages is not None:
self._messages.append(message)
# we ensure that the channel is either a TextChannel, VoiceChannel, or Thread
if channel and channel.__class__ in (TextChannel, VoiceChannel, Thread):
if channel and channel.__class__ in (TextChannel, VoiceChannel, Thread, StageChannel):
channel.last_message_id = message.id # type: ignore
def parse_message_delete(self, data: gw.MessageDeleteEvent) -> None:

Loading…
Cancel
Save