From 57b22934203b17a3ec1561fe51370e7f5e3fc7b6 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sun, 21 Apr 2019 13:00:54 -0700 Subject: [PATCH] push the right param --- ircddb/IRCDDBApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircddb/IRCDDBApp.cpp b/ircddb/IRCDDBApp.cpp index 691c920..e6a08af 100644 --- a/ircddb/IRCDDBApp.cpp +++ b/ircddb/IRCDDBApp.cpp @@ -450,7 +450,7 @@ void IRCDDBApp::sendPing(const std::string &to, const std::string &from) std::string f(from); ReplaceChar(f, ' ', '_'); IRCMessage *rm = new IRCMessage(ircUser, "IDRT_PING"); - rm->addParam(from); + rm->addParam(f); std::string out; rm->composeMessage(out); out.pop_back();