aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Boris Muratov <[email protected]>2023-04-06 20:28:20 +0300
committerGravatar GitHub <[email protected]>2023-04-06 20:28:20 +0300
commiteed9aed2108c7b4622286ef97f4ed8c678191b64 (patch)
treefbe3c9640ea7c3f36746474dd4dbde0d8dda8705
parentMerge pull request #2514 from python-discord/fix_filters (diff)
parentTemporarily disable help post name check (diff)
Merge pull request #2515 from python-discord/disable_name_check
Temporarily disable help post name check
-rw-r--r--bot/exts/help_channels/_cog.py4
1 files 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