diff --git a/DiscordChatExporter.Core/Discord/Data/Channel.cs b/DiscordChatExporter.Core/Discord/Data/Channel.cs index 43642b8a..93e6aca2 100644 --- a/DiscordChatExporter.Core/Discord/Data/Channel.cs +++ b/DiscordChatExporter.Core/Discord/Data/Channel.cs @@ -78,6 +78,7 @@ public partial record Channel ?? json.GetPropertyOrNull("recipients") ?.EnumerateArrayOrNull() ?.Select(User.Parse) + .OrderBy(u => u.Id) .Select(u => u.DisplayName) .Pipe(s => string.Join(", ", s)) // Fallback