From 09f9f387d7a8ba7c15e73f6f9ecc6d8dc6cd8eec Mon Sep 17 00:00:00 2001 From: Solareon <769465+solareon@users.noreply.github.com> Date: Fri, 27 Feb 2026 09:10:56 +0100 Subject: [PATCH] chore: add todo for other component types --- .../Discord/Data/Components/ActionRowComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Core/Discord/Data/Components/ActionRowComponent.cs b/DiscordChatExporter.Core/Discord/Data/Components/ActionRowComponent.cs index 6b597dd8..4c012f3d 100644 --- a/DiscordChatExporter.Core/Discord/Data/Components/ActionRowComponent.cs +++ b/DiscordChatExporter.Core/Discord/Data/Components/ActionRowComponent.cs @@ -22,7 +22,7 @@ public partial record ActionRowComponent var components = json.GetPropertyOrNull("components") ?.EnumerateArrayOrNull() - ?.Where(c => c.GetPropertyOrNull("type")?.GetInt32OrNull() == 2) + ?.Where(c => c.GetPropertyOrNull("type")?.GetInt32OrNull() == 2) // TODO: support other component types (selects) ?.Select(ButtonComponent.Parse) .ToArray() ?? [];