diff --git a/src/Commands/ToolsCommandGroup.cs b/src/Commands/ToolsCommandGroup.cs index d7d6785..57fe2aa 100644 --- a/src/Commands/ToolsCommandGroup.cs +++ b/src/Commands/ToolsCommandGroup.cs @@ -100,7 +100,7 @@ public class ToolsCommandGroup : CommandGroup DateTimeOffset? communicationDisabledUntil = null; if (guildMemberResult.IsDefined(out var guildMember)) { - communicationDisabledUntil = guildMember.CommunicationDisabledUntil.Value; + communicationDisabledUntil = guildMember.CommunicationDisabledUntil.OrDefault(null); AppendGuildInformation(guildMember, builder); }