diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b79a62c7..03756a104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,7 @@ - Bugfix: Fixed viewer list not closing after pressing escape key. (#3734) - Bugfix: Fixed links with no thumbnail having previous link's thumbnail. (#3720) - Dev: Use Game Name returned by Get Streams instead of querying it from the Get Games API. (#3662) -- Dev: Batch checking live status for all channels after startup. (#3757) +- Dev: Batch checking live status for all channels after startup. (#3757, #3762) ## 2.3.5 diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index 2869a1850..08d68ddaa 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -346,7 +346,7 @@ void TwitchIrcServer::bulkRefreshLiveStatus() [this](std::vector streams) { for (const auto &stream : streams) { - auto chan = this->getChannelOrEmptyByID(stream.userId); + auto chan = this->getChannelOrEmpty(stream.userLogin); if (chan->getType() != Channel::Type::Twitch) continue;