From 6092c428dd1a7f5749f073aecfedc79dc4a98a8d Mon Sep 17 00:00:00 2001 From: quin lynch Date: Sun, 24 Oct 2021 08:47:49 -0300 Subject: [PATCH] Fix followup with file overwrite having incorrect parameter locations --- .../Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs index 66d10fd3b..de9193e35 100644 --- a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs +++ b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs @@ -178,8 +178,8 @@ namespace Discord.WebSocket /// public override async Task FollowupWithFileAsync( Stream fileStream, + string fileName, string text = null, - string fileName = null, Embed[] embeds = null, bool isTTS = false, bool ephemeral = false,