Browse Source

Fix on_typing not dispatching for threads

pull/7435/head
Rapptz 4 years ago
parent
commit
fbc4a51c35
  1. 2
      discord/state.py

2
discord/state.py

@ -1259,7 +1259,7 @@ class ConnectionState:
user_id = utils._get_as_snowflake(data, 'user_id')
if isinstance(channel, DMChannel):
member = channel.recipient
elif isinstance(channel, TextChannel) and guild is not None:
elif isinstance(channel, (Thread, TextChannel)) and guild is not None:
member = guild.get_member(user_id)
if member is None:
member_data = data.get('member')

Loading…
Cancel
Save