Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: awaitMessageComponent with MessageComponentInteractions #8598

Merged
merged 13 commits into from
Jun 14, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class InteractionCollector extends Collector {
* The message from which to collect interactions, if provided
* @type {?Snowflake}
*/
this.messageId = options.message?.id ?? null;
this.messageId = options.message?.id ?? options.interactionResponse?.message?.id ?? null;
Jiralite marked this conversation as resolved.
Show resolved Hide resolved

/**
* The message interaction id from which to collect interactions, if provided
Expand Down