Fixed live status not updating when channel is online. (#319)

* Fixed live status not updating when channel is online.
This commit is contained in:
Cranken
2018-04-08 14:45:47 +02:00
committed by pajlada
parent 10f0aadb6c
commit 2b3fa06539
3 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ void SplitHeader::initializeChannelSignals()
TwitchChannel *twitchChannel = dynamic_cast<TwitchChannel *>(channel.get());
if (twitchChannel) {
twitchChannel->onlineStatusChanged.connect([this]() {
twitchChannel->updateLiveInfo.connect([this]() {
this->updateChannelText(); //
});
}