1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

IRCClient: Fix broken handling of RPL_WHOISIDLE.

This commit is contained in:
Andreas Kling 2019-03-19 02:28:34 +01:00
parent f88e550998
commit c151b0370d

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)