🐛 - fix: bot.helpers.editFollowUpMessage - id conversion (#2495)

This commit is contained in:
Yaikava
2022-09-30 22:08:08 +00:00
committed by GitHub
parent 8fa7e89e8c
commit e410da016e

View File

@@ -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,