diff --git a/src/providers/twitch/TwitchServer.cpp b/src/providers/twitch/TwitchServer.cpp index eaf90026e..0ea4cd37d 100644 --- a/src/providers/twitch/TwitchServer.cpp +++ b/src/providers/twitch/TwitchServer.cpp @@ -268,7 +268,8 @@ std::shared_ptr TwitchServer::getChannelOrEmptyByID( if (!twitchChannel) continue; - if (twitchChannel->roomId() == channelId) + if (twitchChannel->roomId() == channelId && + twitchChannel->getName().split(":").size() < 3) { return twitchChannel; }