From e8ba24dc0a80bfafeebe245baecd25506fc09a0f Mon Sep 17 00:00:00 2001 From: Quin Lynch <49576606+quinchs@users.noreply.github.com> Date: Thu, 22 Jul 2021 11:33:58 -0300 Subject: [PATCH] Update SocketSlashCommand.cs Fix #53 --- .../Entities/Interaction/Slash Commands/SocketSlashCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs b/src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs index 78fd3b715..c5f986eed 100644 --- a/src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs +++ b/src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs @@ -65,7 +65,7 @@ namespace Discord.WebSocket if (Discord.AlwaysAcknowledgeInteractions) { - await FollowupAsync(embeds, text, isTTS, ephemeral, type, allowedMentions, options); + await FollowupAsync(embeds, text, isTTS, ephemeral, type, allowedMentions, options, component); return; }