diff options
author | 2023-01-13 19:20:24 +0000 | |
---|---|---|
committer | 2023-01-13 19:20:24 +0000 | |
commit | fe5bcac773142639a89c17e699da915472282c7e (patch) | |
tree | 3b237cbb7e8333c3d44243c9431e0c44efe1a773 | |
parent | added under command Issue #2331 (#2354) (diff) | |
parent | Merge branch 'main' into allow-passing-channel-objets-when-checking-ignore (diff) |
Merge pull request #2375 from python-discord/allow-passing-channel-objets-when-checking-ignore
Allow passing ful channel objects to check if the channel is ignored
-rw-r--r-- | bot/exts/moderation/modlog.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bot/exts/moderation/modlog.py b/bot/exts/moderation/modlog.py index eeaf69139..2c94d1af8 100644 --- a/bot/exts/moderation/modlog.py +++ b/bot/exts/moderation/modlog.py @@ -534,7 +534,7 @@ class ModLog(Cog, name="ModLog"): return self.is_channel_ignored(message.channel.id) - def is_channel_ignored(self, channel_id: int) -> bool: + def is_channel_ignored(self, channel: int | GuildChannel | Thread) -> bool: """ Return true if the channel, or parent channel in the case of threads, passed should be ignored by modlog. @@ -543,7 +543,8 @@ class ModLog(Cog, name="ModLog"): 2. Channels that mods do not have view permissions to 3. Channels in constants.Guild.modlog_blacklist """ - channel = self.bot.get_channel(channel_id) + if isinstance(channel, int): + channel = self.bot.get_channel(channel) # Ignore not found channels, DMs, and messages outside of the main guild. if not channel or channel.guild is None or channel.guild.id != GuildConstant.id: @@ -833,7 +834,7 @@ class ModLog(Cog, name="ModLog"): @Cog.listener() async def on_thread_delete(self, thread: Thread) -> None: """Log thread deletion.""" - if self.is_channel_ignored(thread.id): + if self.is_channel_ignored(thread): log.trace("Ignoring deletion of thread %s (%d)", thread.mention, thread.id) return |