This commit is contained in:
zneix 2021-07-31 18:13:38 +02:00
parent a0228fbd6d
commit 0ea7db094e
No known key found for this signature in database
GPG key ID: 911916E0523B22F6

View file

@ -305,7 +305,7 @@ std::shared_ptr<Channel> TwitchIrcServer::getChannelOrEmptyByID(
continue;
if (twitchChannel->roomId() == channelId &&
twitchChannel->getName().splitRef(":").size() < 3)
twitchChannel->getName().split(":").size() < 3)
{
return twitchChannel;
}