Include channel category in default export file name

Closes #188
This commit is contained in:
Alexey Golub 2020-04-27 00:02:55 +03:00
parent be73f0b92c
commit 247f3a9c5b

View file

@ -88,7 +88,7 @@ namespace DiscordChatExporter.Domain.Exporting
var buffer = new StringBuilder();
// Guild and channel names
buffer.Append($"{guild.Name} - {channel.Name} [{channel.Id}]");
buffer.Append($"{guild.Name} - {channel.Category} - {channel.Name} [{channel.Id}]");
// Date range
if (after != null || before != null)