IRCClient: Fix broken handling of RPL_WHOISIDLE.

This commit is contained in:
Andreas Kling 2019-03-19 02:28:34 +01:00
commit c151b0370d
Notes: sideshowbarker 2024-07-19 15:00:31 +09:00

View file

@ -468,7 +468,7 @@ void IRCClient::handle_rpl_whoisidle(const Message& msg)
return;
auto& nick = msg.arguments[1];
auto& secs = msg.arguments[2];
add_server_message(String::format("* %s is %d seconds idle", nick.characters(), secs.characters()));
add_server_message(String::format("* %s is %s seconds idle", nick.characters(), secs.characters()));
}
void IRCClient::handle_rpl_whoischannels(const Message& msg)