From 3816157dbb602b990f17142582448057a5dc3637 Mon Sep 17 00:00:00 2001 From: Patrick Balsiger Date: Fri, 23 Nov 2018 15:32:05 +0100 Subject: [PATCH] foo --- src/IrcPlugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IrcPlugin.cpp b/src/IrcPlugin.cpp index 7898412..a8800ee 100644 --- a/src/IrcPlugin.cpp +++ b/src/IrcPlugin.cpp @@ -64,6 +64,8 @@ void IrcPlugin::connect() if (!client->connected()) { PRINT_MSG(Serial, "IRC", String("Attempting connection to " + server).c_str()); + PRINT_MSG(Serial, "IRC", String("NICK " + nick).c_str()); + PRINT_MSG(Serial, "IRC", String("USER " + user).c_str()); if (client->connect(nick.c_str(), user.c_str())) { PRINT_MSG(Serial, "IRC", "connected");