aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/help_channels.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py
index c547d9524..12bed2e61 100644
--- a/bot/cogs/help_channels.py
+++ b/bot/cogs/help_channels.py
@@ -296,6 +296,11 @@ class HelpChannels(Scheduler, commands.Cog):
async def _scheduled_task(self, data: ChannelTimeout) -> None:
"""Make a channel dormant after specified timeout or reschedule if it's still active."""
+ await asyncio.sleep(data.timeout)
+
+ # Use asyncio.shield to prevent move_idle_channel from cancelling itself.
+ # The parent task (_scheduled_task) will still get cancelled.
+ await asyncio.shield(self.move_idle_channel(data.channel))
def setup(bot: Bot) -> None: