mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-23 19:26:57 -04:00
Add channel ID to default export file name to avoid collisions
This commit is contained in:
parent
e4b0d60c40
commit
524c86b8f2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue