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
Notes: sideshowbarker 2024-07-19 07:48:51 +09:00

View file

@ -632,7 +632,6 @@ void IRCClient::handle_rpl_topic(const Message& msg)
auto& channel_name = msg.arguments[1]; auto& channel_name = msg.arguments[1];
auto& topic = msg.arguments[2]; auto& topic = msg.arguments[2];
ensure_channel(channel_name).handle_topic({}, topic); 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) void IRCClient::handle_rpl_namreply(const Message& msg)