Browse Source

IRCClient: Remove FIXME for RPL_TOPICWHOTIME

RPL_TOPICWHOTIME is handled by handle_rpl_topicwhotime.
Brendan Coles 5 years ago
parent
commit
44f8161166
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Applications/IRCClient/IRCClient.cpp

+ 0 - 1
Applications/IRCClient/IRCClient.cpp

@@ -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)