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

IRCClient: Remove FIXME for RPL_TOPICWHOTIME

RPL_TOPICWHOTIME is handled by handle_rpl_topicwhotime.
This commit is contained in:
Brendan Coles 2020-04-08 12:17:51 +00:00 committed by Andreas Kling
parent 9126859679
commit 44f8161166

View file

@ -632,7 +632,6 @@ void IRCClient::handle_rpl_topic(const Message& msg)
auto& channel_name = msg.arguments[1];
auto& topic = msg.arguments[2];
ensure_channel(channel_name).handle_topic({}, topic);
// FIXME: Handle RPL_TOPICWHOTIME so we can know who set it and when.
}
void IRCClient::handle_rpl_namreply(const Message& msg)