diff options
| -rw-r--r-- | bot/cogs/moderation/management.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/bot/cogs/moderation/management.py b/bot/cogs/moderation/management.py index 35448f682..531bb1743 100644 --- a/bot/cogs/moderation/management.py +++ b/bot/cogs/moderation/management.py @@ -100,7 +100,9 @@ class ModManagement(commands.Cog):          confirm_messages = []          log_text = "" -        if isinstance(duration, str): +        if duration is not None and not old_infraction['active']: +            confirm_messages.append("expiry unchanged (infraction already expired)") +        elif isinstance(duration, str):              request_data['expires_at'] = None              confirm_messages.append("marked as permanent")          elif duration is not None: | 
