~singpolyma/biboumi

4203384e2adcc57ddaf0ede6ca7745fb4a828c44 — Florent Le Coz 8 years ago 6056999
Do not send an empty password at all, if the user didn't provide one
1 files changed, 2 insertions(+), 0 deletions(-)

M src/irc/irc_client.cpp
M src/irc/irc_client.cpp => src/irc/irc_client.cpp +2 -0
@@ 210,6 210,8 @@ void IrcClient::send_join_command(const std::string& chan_name, const std::strin
{
  if (this->welcomed == false)
    this->channels_to_join.emplace_back(chan_name, password);
  else if (password.empty())
    this->send_message(IrcMessage("JOIN", {chan_name}));
  else
    this->send_message(IrcMessage("JOIN", {chan_name, password}));
  this->start();