Forgot to actually call connectServer in previous commit..

This commit is contained in:
Jan Kaluza 2015-11-25 16:57:39 +01:00
parent fedd9216b2
commit bf09edf74e

View file

@ -72,6 +72,7 @@ void WebSocketClient::connectServer(const std::string &url) {
std::string u = url.substr(6);
m_host = u.substr(0, u.find("/"));
m_path = u.substr(u.find("/"));
connectServer();
}
void WebSocketClient::write(const std::string &data) {