fix type guards

This commit is contained in:
Crawron
2022-07-21 16:15:33 -05:00
committed by Darius
parent 90744ebe47
commit e313399a5a

View File

@@ -34,7 +34,7 @@ export class ReacordDiscordJs extends Reacord {
super(config)
client.on("interactionCreate", (interaction) => {
if (interaction.isMessageComponent()) {
if (interaction.isButton() || interaction.isSelectMenu()) {
this.handleComponentInteraction(
this.createReacordComponentInteraction(interaction),
)
@@ -92,7 +92,7 @@ export class ReacordDiscordJs extends Reacord {
(await this.client.channels.fetch(channelId)) ??
raise(`Channel ${channelId} not found`)
if (!channel.isText()) {
if (!channel.isTextBased()) {
raise(`Channel ${channelId} is not a text channel`)
}