Replace --include-threads and --include-archived-threads with a single multi-value option

Related to #1119
This commit is contained in:
Tyrrrz
2023-08-28 21:52:56 +03:00
parent 5f6e51f6fb
commit d430f77ae1
8 changed files with 83 additions and 52 deletions

View File

@@ -44,7 +44,9 @@ public class GetDirectChannelsCommand : DiscordCommandBase
// Channel category / name
using (console.WithForegroundColor(ConsoleColor.White))
await console.Output.WriteLineAsync($"{channel.ParentNameWithFallback} / {channel.Name}");
await console.Output.WriteLineAsync(
$"{channel.ParentNameWithFallback} / {channel.Name}"
);
}
}
}