Add channel ID to default export file name to avoid collisions

This commit is contained in:
Alexey Golub 2019-02-09 19:20:13 +02:00
parent e4b0d60c40
commit 524c86b8f2

View file

@ -20,7 +20,7 @@ namespace DiscordChatExporter.Core.Helpers
var result = new StringBuilder();
// Append guild and channel names
result.Append($"{guild.Name} - {channel.Name}");
result.Append($"{guild.Name} - {channel.Name} [{channel.Id}]");
// Append date range
if (from != null || to != null)