summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/irc/irc_client.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index d35437c..232b87f 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -27,6 +27,8 @@ IrcClient::~IrcClient()
void IrcClient::start()
{
+ if (this->connected || this->connecting)
+ return ;
this->bridge->send_xmpp_message(this->hostname, "", std::string("Connecting to ") +
this->hostname + ":" + "6667");
this->connect(this->hostname, "6667");
@@ -144,8 +146,7 @@ void IrcClient::send_quit_command(const std::string& reason)
void IrcClient::send_join_command(const std::string& chan_name)
{
- if (!this->connected)
- this->start();
+ this->start();
if (this->welcomed == false)
this->channels_to_join.push_back(chan_name);
else