From 15cf8bfcfa11b00ffb2409ee60846712a1db8aaa Mon Sep 17 00:00:00 2001 From: pajlada Date: Sun, 22 Mar 2020 06:22:36 -0400 Subject: [PATCH] Don't set game to game id, always wait for the game name to be resolved (#1609) Fixes #1606 --- src/providers/twitch/TwitchChannel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp index 05dac012..c009f5f6 100644 --- a/src/providers/twitch/TwitchChannel.cpp +++ b/src/providers/twitch/TwitchChannel.cpp @@ -542,7 +542,6 @@ void TwitchChannel::parseLiveStatus(bool live, const HelixStream &stream) // failure }); } - status->game = stream.gameId; status->title = stream.title; QDateTime since = QDateTime::fromString(stream.startedAt, Qt::ISODate); auto diff = since.secsTo(QDateTime::currentDateTime());