From cdf787186e2c3c0c57c22a5186fda670bc7ddbed Mon Sep 17 00:00:00 2001 From: z03h <7235242+z03h@users.noreply.github.com> Date: Mon, 16 May 2022 12:32:13 -0700 Subject: [PATCH] Add VoiceChannel and Thread to isinstance checks --- discord/ext/commands/core.py | 4 +++- discord/state.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 31f078e76..bfa496bb7 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -2317,7 +2317,9 @@ def is_nsfw() -> Check[Any]: def pred(ctx: Context[BotT]) -> bool: ch = ctx.channel - if ctx.guild is None or (isinstance(ch, (discord.TextChannel, discord.Thread)) and ch.is_nsfw()): + if ctx.guild is None or ( + isinstance(ch, (discord.TextChannel, discord.Thread, discord.VoiceChannel)) and ch.is_nsfw() + ): return True raise NSFWChannelRequired(ch) # type: ignore diff --git a/discord/state.py b/discord/state.py index dab982a95..773522628 100644 --- a/discord/state.py +++ b/discord/state.py @@ -1485,7 +1485,7 @@ class ConnectionState: self.dispatch('raw_typing', raw) def _get_reaction_user(self, channel: MessageableChannel, user_id: int) -> Optional[Union[User, Member]]: - if isinstance(channel, TextChannel): + if isinstance(channel, (TextChannel, Thread, VoiceChannel)): return channel.guild.get_member(user_id) return self.get_user(user_id)