diff options
author | Brendan Coles <bcoles@gmail.com> | 2020-04-08 12:17:51 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-08 14:06:03 +0200 |
commit | 44f8161166e302a44b021437751e58bf9f4916c3 (patch) | |
tree | 093a21f6d80c9ef4a0962f8424f0abd180ed8e46 /Applications/IRCClient | |
parent | 9126859679760c62eb4cdd6b54eea2ca80e5a6b5 (diff) | |
download | serenity-44f8161166e302a44b021437751e58bf9f4916c3.zip |
IRCClient: Remove FIXME for RPL_TOPICWHOTIME
RPL_TOPICWHOTIME is handled by handle_rpl_topicwhotime.
Diffstat (limited to 'Applications/IRCClient')
-rw-r--r-- | Applications/IRCClient/IRCClient.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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) |