From add312b60904309bbbf222c0cf61ba7c87977d27 Mon Sep 17 00:00:00 2001 From: hemirt Date: Sun, 5 May 2019 19:25:11 +0200 Subject: [PATCH] fix #1062 --- src/providers/twitch/TwitchChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp index 2d4ee4a49..a40859791 100644 --- a/src/providers/twitch/TwitchChannel.cpp +++ b/src/providers/twitch/TwitchChannel.cpp @@ -472,7 +472,7 @@ void TwitchChannel::setLive(bool newLiveStatus) else { auto offline = - makeSystemMessage(this->getName() + " is offline"); + makeSystemMessage(this->getDisplayName() + " is offline"); this->addMessage(offline); } guard->live = newLiveStatus;