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: incorrect comparisons #558

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

imnaiyar
Copy link

@imnaiyar imnaiyar commented Jan 9, 2025

The comparison here is simply incorrect

if (!this.type === ChannelType.GuildText && !this.type === ChannelType.DM) return;

You are using ! against a number (channel type) which will get coerced to a boolean and boolean === number will never be true.

Also included voice channel here since you can send a message in a voice channel (and needs Connect Permissions to send messages as part of implicit permissions)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant