mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Add channel ID to default export file name to avoid collisions
This commit is contained in:
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…
Reference in a new issue