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 fourtf
parent 266041d10a
commit c2ddb74307
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(); //
});
}