Cannot updateMessage after deferMessageUpdate (@discordjs/[email protected])

Hello, I'm running the following chain of interaction responses:
/// Original slash command interaction received
.defer(...)
.followUp(...)
// With this followUp, the slash command response is now a select menu.

/// Select menu interaction received
.deferMessageUpdate(...)
.updateMessage(...) // ERROR: Interaction has already been acknowledged.
// Also tried
,reply(...) // ERROR: Interaction has already been acknowledged.
/// Original slash command interaction received
.defer(...)
.followUp(...)
// With this followUp, the slash command response is now a select menu.

/// Select menu interaction received
.deferMessageUpdate(...)
.updateMessage(...) // ERROR: Interaction has already been acknowledged.
// Also tried
,reply(...) // ERROR: Interaction has already been acknowledged.
So the question is, how am i supposed to respond after a deferMessageUpdate, because for some reason updateMessage isn't working.
4 Replies
d.js toolkit
d.js toolkit2mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by staff
Inky
Inky2mo ago
You should be using editReply
Sammy
SammyOP2mo ago
wait lemme try that one minute oh wow that works can someone explain why its editReply When is updateMessage used? Is that just for non-deferred component interactions?
monbrey
monbrey2mo ago
updateMessage is a first-response also Anything after the initial response is then an "edit" In the same way that you cant deferReply > reply, you also cant deferMessageUpdate > update

Did you find this page helpful?