diff --git a/DiscordDelete/Program.cs b/DiscordDelete/Program.cs index 9af89c4..12e49b1 100644 --- a/DiscordDelete/Program.cs +++ b/DiscordDelete/Program.cs @@ -40,10 +40,10 @@ int finalCode = await CommandLine }, async (ScanOptions opt) => { - // This should never happen as those args are required. - if (opt.ChannelId is null || opt.Author is null) + // This should never happen author required. + if (opt.Author is null) { - Console.WriteLine("Channel or author ID is null."); + Console.WriteLine("Author ID is null."); return 1; }