fix: don't auth for interaction showModal() (#9046)

Co-authored-by: space <spaceeec@yahoo.com>
This commit is contained in:
widepeepoclap
2023-01-13 17:07:06 +01:00
committed by GitHub
parent 6a9875da05
commit b803a9a899

View File

@@ -255,6 +255,7 @@ class InteractionResponses {
type: InteractionResponseType.Modal, type: InteractionResponseType.Modal,
data: isJSONEncodable(modal) ? modal.toJSON() : this.client.options.jsonTransformer(modal), data: isJSONEncodable(modal) ? modal.toJSON() : this.client.options.jsonTransformer(modal),
}, },
auth: false,
}); });
this.replied = true; this.replied = true;
} }