From 44f8161166e302a44b021437751e58bf9f4916c3 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Wed, 8 Apr 2020 12:17:51 +0000 Subject: [PATCH] IRCClient: Remove FIXME for RPL_TOPICWHOTIME RPL_TOPICWHOTIME is handled by handle_rpl_topicwhotime. --- Applications/IRCClient/IRCClient.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Applications/IRCClient/IRCClient.cpp b/Applications/IRCClient/IRCClient.cpp index a2da80d042..83314e3555 100644 --- a/Applications/IRCClient/IRCClient.cpp +++ b/Applications/IRCClient/IRCClient.cpp @@ -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)