Let's actually use the supplied password.

This commit is contained in:
casey langen 2020-10-06 23:21:34 -07:00
parent 382cfb0711
commit ed717d4f88

View File

@ -100,7 +100,7 @@ WebSocketClient::WebSocketClient(Listener* listener) {
this->SetState(State::Authenticating);
this->client.send(
connection,
createAuthenticateRequest(""),
createAuthenticateRequest(this->password),
websocketpp::frame::opcode::text);
});