Skip to content

Commit

Permalink
Auto format code with clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 18, 2024
1 parent b24dbc1 commit 0c6dfe3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bot/src/Bot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ void Bot::run() {
void Bot::login() {
_socket.sendMessage("CAP LS 302\r\n");
string data = _socket.receive();
string rpl = "PASS " + _password + "\r\nNICK daddy\r\nUSER Dad * * :Dad\r\nCAP END\r\n";
string rpl = "PASS " + _password +
"\r\nNICK daddy\r\nUSER Dad * * :Dad\r\nCAP END\r\n";
_socket.sendMessage(rpl);
data = _socket.receive();

Expand Down

0 comments on commit 0c6dfe3

Please sign in to comment.