diff options
| -rw-r--r-- | bot/exts/help_channels/_channel.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py index 4e65d9379..cd1a0ac58 100644 --- a/bot/exts/help_channels/_channel.py +++ b/bot/exts/help_channels/_channel.py @@ -198,7 +198,7 @@ async def maybe_archive_idle_post(post_id: int, scheduler: scheduling.Scheduler)          log.trace(f"Not closing missing post #{post} ({post.id}).")          return -    if post.locked: +    if post.archived or post.locked:          log.trace(f"Not closing already closed post #{post} ({post.id}).")          return | 
