fix: receive bttv live updates again (#6132)

This commit is contained in:
iProdigy
2025-04-06 04:58:09 -05:00
committed by GitHub
parent 3481c93365
commit d8ef52a308
7 changed files with 18 additions and 15 deletions
+2 -2
View File
@@ -21,13 +21,13 @@ BttvLiveUpdates::~BttvLiveUpdates()
}
void BttvLiveUpdates::joinChannel(const QString &channelID,
const QString &userName)
const QString &userID)
{
if (this->joinedChannels_.insert(channelID).second)
{
this->subscribe({BttvLiveUpdateSubscriptionChannel{channelID}});
this->subscribe({BttvLiveUpdateBroadcastMe{.twitchID = channelID,
.userName = userName}});
.userID = userID}});
}
}