From a2d7917a4aef1c5c342ec65a16e15366d04116e4 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sun, 21 Apr 2019 12:40:00 -0700 Subject: [PATCH] correct the ping message --- ircddb/IRCDDBApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircddb/IRCDDBApp.cpp b/ircddb/IRCDDBApp.cpp index 4ea553a..02fba07 100644 --- a/ircddb/IRCDDBApp.cpp +++ b/ircddb/IRCDDBApp.cpp @@ -447,7 +447,7 @@ void IRCDDBApp::sendPing(const std::string &to, const std::string &from) std::string ircUser = t + std::string("-") + std::to_string(j); if (1 == d->user.count(ircUser)) { - IRCMessage *rm = new IRCMessage(t, "IDRT_PING"); + IRCMessage *rm = new IRCMessage(ircUser, "IDRT_PING"); rm->addParam(from); std::string out; rm->composeMessage(out);