From 0c6dfe30b60534020d68fadbe5df168651f4fcd8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 18 Sep 2024 09:44:11 +0000 Subject: [PATCH] Auto format code with clang-format --- bot/src/Bot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/src/Bot.cpp b/bot/src/Bot.cpp index 56591a3..e6f8888 100644 --- a/bot/src/Bot.cpp +++ b/bot/src/Bot.cpp @@ -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();