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:
parent
f88e550998
commit
c151b0370d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue