diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-05-19 05:15:49 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-05-19 05:15:49 +0200 |
commit | 2195292919110bad41f507f45fa1b7d86a369539 (patch) | |
tree | c0982c39ccbfa2b061f6dac4811a85563237a840 | |
parent | 501a3f7be25f4dbb4526bf645d7df8d29f6a54a5 (diff) | |
download | biboumi-2195292919110bad41f507f45fa1b7d86a369539.tar.gz biboumi-2195292919110bad41f507f45fa1b7d86a369539.tar.bz2 biboumi-2195292919110bad41f507f45fa1b7d86a369539.tar.xz biboumi-2195292919110bad41f507f45fa1b7d86a369539.zip |
Remove a debug line (breaking our PING stuf) that should not have been commited
-rw-r--r-- | src/bridge/bridge.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bridge/bridge.cpp b/src/bridge/bridge.cpp index 6081986..467923b 100644 --- a/src/bridge/bridge.cpp +++ b/src/bridge/bridge.cpp @@ -418,7 +418,6 @@ void Bridge::send_irc_user_ping_request(const std::string& irc_hostname, const s if (message.command == "NOTICE" && utils::tolower(user.nick) == nick && body.substr(0, 6) == "\01PING ") { - return false; const std::string id = body.substr(6, body.size() - 7); if (id != iq_id) return false; |