mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
handle ROOMSTATE in read connection too
this fixes the "recent messages not loading" issue
This commit is contained in:
parent
8312d4b112
commit
88da9501f7
1 changed files with 5 additions and 0 deletions
|
@ -161,6 +161,11 @@ void TwitchIrcServer::readConnectionMessageReceived(
|
|||
// Received USERSTATE upon JOINing a channel
|
||||
handler.handleUserStateMessage(message);
|
||||
}
|
||||
else if (command == "ROOMSTATE")
|
||||
{
|
||||
// Received ROOMSTATE upon JOINing a channel
|
||||
handler.handleRoomStateMessage(message);
|
||||
}
|
||||
}
|
||||
|
||||
void TwitchIrcServer::writeConnectionMessageReceived(
|
||||
|
|
Loading…
Reference in a new issue