We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using either Client or Sender's send_mode(target, modes) function only the first mode in the array is set.
For example this will only set mode #channel +v nickname
sender.send_mode(&channel, &[ Mode::Plus(ChannelMode::Voice, Some(nickname.to_string())), Mode::Plus(ChannelMode::Oper, Some(nickname.to_string())) ])?;
Or this will only set mode #channel +o nickname
sender.send_mode(&channel, &[ Mode::Plus(ChannelMode::Oper, Some(nickname.to_string())), Mode::Plus(ChannelMode::Voice, Some(nickname.to_string())) ])?;
Other info:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using either Client or Sender's send_mode(target, modes) function only the first mode in the array is set.
For example this will only set mode #channel +v nickname
Or this will only set mode #channel +o nickname
Other info:
The text was updated successfully, but these errors were encountered: