From 0ea7db094ec26c9629f73a060a7a83d9ee03caca Mon Sep 17 00:00:00 2001 From: zneix Date: Sat, 31 Jul 2021 18:13:38 +0200 Subject: [PATCH] Follow-up to 52ef16418d3696c2430bfb65b8e6fdb84909056f --- src/providers/twitch/TwitchIrcServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index 3aede1400..b12ae6f98 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -305,7 +305,7 @@ std::shared_ptr TwitchIrcServer::getChannelOrEmptyByID( continue; if (twitchChannel->roomId() == channelId && - twitchChannel->getName().splitRef(":").size() < 3) + twitchChannel->getName().split(":").size() < 3) { return twitchChannel; }