Fix the way we we forward an XMPP ping result to the IRC server Our CTCP notice didn't include a \01 char at the end. We thus failed to check the PING id when we received it ourself, because one char was missing
1 files changed, 1 insertions(+), 1 deletions(-) M src/bridge/bridge.cpp
M src/bridge/bridge.cpp => src/bridge/bridge.cpp +1 -1
@@ 399,7 399,7 @@ void Bridge::send_xmpp_version_to_irc(const Iid& iid, const std::string& name, c void Bridge::send_irc_ping_result(const Iid& iid, const std::string& id) { this->send_private_message(iid, "\01PING "s + utils::revstr(id), "NOTICE"); this->send_private_message(iid, "\01PING "s + utils::revstr(id) + "\01", "NOTICE"); } void Bridge::send_irc_user_ping_request(const std::string& irc_hostname, const std::string& nick,