diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/help_channels/_channel.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py index 2837bc7c5..0846b28c8 100644 --- a/bot/exts/help_channels/_channel.py +++ b/bot/exts/help_channels/_channel.py @@ -75,7 +75,8 @@ async def get_closing_time(channel: discord.TextChannel, init_done: bool) -> t.T          # Use the greatest offset to avoid the possibility of prematurely closing the channel.          time = Arrow.fromdatetime(msg.created_at) + timedelta(minutes=idle_minutes_claimant) -        return time, ClosingReason.LATEST_MESSSAGE +        reason = ClosingReason.DELETED if is_empty else ClosingReason.LATEST_MESSSAGE +        return time, reason      claimant_time = Arrow.utcfromtimestamp(claimant_time)      others_time = await _caches.non_claimant_last_message_times.get(channel.id) | 
