Address code review: fix Snowflake.TryParse usage and remove blank line in channels redirect block

Agent-Logs-Url: https://github.com/Tyrrrz/DiscordChatExporter/sessions/5f305835-64af-456e-b0b4-6163ece1e8cf

Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-03 14:45:14 +00:00
committed by GitHub
parent efb371f093
commit 6750195a35
2 changed files with 15 additions and 3 deletions

View File

@@ -66,7 +66,6 @@ public partial class GetChannelsCommand : DiscordCommandBase
foreach (var channel in channels)
{
await console.Output.WriteLineAsync(channel.Id.ToString());
foreach (var channelThread in threads.Where(t => t.Parent?.Id == channel.Id))
await console.Output.WriteLineAsync(channelThread.Id.ToString());
}