From e410da016ea25a433fc663b449041fd682054e33 Mon Sep 17 00:00:00 2001 From: Yaikava <83710104+Yaikava@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:08:08 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20-=20fix:=20bot.helpers.editFollo?= =?UTF-8?q?wUpMessage=20-=20id=20conversion=20(#2495)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helpers/interactions/responses/editFollowupMessage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/interactions/responses/editFollowupMessage.ts b/helpers/interactions/responses/editFollowupMessage.ts index ae905ef2f..66b44f6cd 100644 --- a/helpers/interactions/responses/editFollowupMessage.ts +++ b/helpers/interactions/responses/editFollowupMessage.ts @@ -33,7 +33,7 @@ export async function editFollowupMessage( "PATCH", bot.constants.routes.WEBHOOK_MESSAGE(bot.applicationId, token, messageId), { - messageId, + messageId: messageId.toString(), ...bot.transformers.reverse.interactionResponse(bot, { type: InteractionResponseTypes.UpdateMessage, data: options,