diff --git a/src/buttons/live-event/applyDescription.ts b/src/buttons/live-event/applyDescription.ts index ca85d1b..7b93f83 100644 --- a/src/buttons/live-event/applyDescription.ts +++ b/src/buttons/live-event/applyDescription.ts @@ -31,7 +31,7 @@ const execute = async (bot: Bot, interaction: Interaction) => { type: InteractionResponseTypes.ChannelMessageWithSource, data: { flags: ApplicationCommandFlags.Ephemeral, - content: applyEditMessage(new Date().getTime()), + content: applyEditMessage(new Date().getTime(), ''), embeds: [eventMessage.embeds[0]], components: applyEditButtons(interaction.data.customId.split(idSeparator)[1] || ''), }, diff --git a/src/buttons/live-event/editActivity.ts b/src/buttons/live-event/editActivity.ts index 34b00f4..b99f9a2 100644 --- a/src/buttons/live-event/editActivity.ts +++ b/src/buttons/live-event/editActivity.ts @@ -143,7 +143,7 @@ const execute = async (bot: Bot, interaction: Interaction) => { type: InteractionResponseTypes.ChannelMessageWithSource, data: { flags: ApplicationCommandFlags.Ephemeral, - content: applyEditMessage(new Date().getTime()), + content: applyEditMessage(new Date().getTime(), ''), embeds: [eventMessage.embeds[0]], components: applyEditButtons(interaction.data.customId.replaceAll(fillerChar, '').split(idSeparator)[1] || ''), },