Add channel ID to default export file name to avoid collisions

pull/145/head
Alexey Golub 6 years ago
parent e4b0d60c40
commit 524c86b8f2

@ -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)

Loading…
Cancel
Save