From 247f3a9c5b36dc28a2d3a8018369e3a6710c0da1 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Mon, 27 Apr 2020 00:02:55 +0300 Subject: [PATCH] Include channel category in default export file name Closes #188 --- DiscordChatExporter.Domain/Exporting/ChannelExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Domain/Exporting/ChannelExporter.cs b/DiscordChatExporter.Domain/Exporting/ChannelExporter.cs index 6e2cbb2..d995ab8 100644 --- a/DiscordChatExporter.Domain/Exporting/ChannelExporter.cs +++ b/DiscordChatExporter.Domain/Exporting/ChannelExporter.cs @@ -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)