Browse Source
Fix StageChannel.last_message_id always being None
pull/9426/head
owocado
2 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/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: |
|
|
|