Skip to content

Commit

Permalink
Add missing arg in help post archive call
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLovering committed Jan 18, 2025
1 parent 4517729 commit c642d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/exts/help_channels/_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def on_thread_update(self, before: discord.Thread, after: discord.Thread)
if after.parent_id != self.help_forum_channel.id:
return
if not before.archived and after.archived:
await _channel.help_post_archived(after)
await _channel.help_post_archived(after, self.scheduler)
if after.id in self.scheduler:
self.scheduler.cancel(after.id)

Expand Down

0 comments on commit c642d3d

Please sign in to comment.