From 1ae485fcbcaad640e21cf15196a14c672f284691 Mon Sep 17 00:00:00 2001 From: Boris Muratov <8bee278@gmail.com> Date: Thu, 6 Apr 2023 20:23:44 +0300 Subject: Temporarily disable help post name check This doesn't work at the moment with the new filtering and a proper fix will be made later --- bot/exts/help_channels/_cog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 29d238a5c..6c8478a3f 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -14,7 +14,7 @@ from bot.log import get_logger log = get_logger(__name__) if t.TYPE_CHECKING: - from bot.exts.filters.filtering import Filtering + from bot.exts.filtering.filtering import Filtering class HelpForum(commands.Cog): @@ -145,7 +145,7 @@ class HelpForum(commands.Cog): if thread.parent_id != self.help_forum_channel.id: return - await self.post_with_disallowed_title_check(thread) + # await self.post_with_disallowed_title_check(thread) TODO bring this back with the new filtering system await _channel.help_post_opened(thread) delay = min(constants.HelpChannels.deleted_idle_minutes, constants.HelpChannels.idle_minutes) * 60 -- cgit v1.2.3