[CLI] Show channel categories

Closes 195
This commit is contained in:
Alexey Golub
2020-04-27 00:01:37 +03:00
parent d03be8b1dd
commit be73f0b92c
3 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ namespace DiscordChatExporter.Cli.Commands
{
var dmChannels = await GetDiscordClient().GetGuildChannelsAsync(Guild.DirectMessages.Id);
foreach (var channel in dmChannels.OrderBy(c => c.Name))
console.Output.WriteLine($"{channel.Id} | {channel.Name}");
foreach (var channel in dmChannels.OrderBy(c => c.Category).ThenBy(c => c.Name))
console.Output.WriteLine($"{channel.Id} | {channel.Category} / {channel.Name}");
}
}
}