1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:47:46 +00:00

IRCClient: Autojoin channels after client registration

Wait for the server to advise negotiation was successful (RPL_WELCOME)
before autojoining channels.

Fixes #1713
This commit is contained in:
Brendan Coles 2020-04-09 16:27:48 +00:00 committed by Andreas Kling
parent cd84544706
commit 68c7ca7d3b
2 changed files with 22 additions and 8 deletions

View file

@ -169,6 +169,7 @@ private:
void handle_quit(const Message&);
void handle_ping(const Message&);
void handle_topic(const Message&);
void handle_rpl_welcome(const Message&);
void handle_rpl_topic(const Message&);
void handle_rpl_whoisuser(const Message&);
void handle_rpl_whoisserver(const Message&);