diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp index df1582422..d305f0c43 100644 --- a/src/providers/twitch/TwitchChannel.cpp +++ b/src/providers/twitch/TwitchChannel.cpp @@ -744,6 +744,12 @@ void TwitchChannel::refreshCheerEmotes() NetworkRequest::twitchRequest(url) .onSuccess([this, weak = weakOf(this)](auto result) -> Outcome { + auto shared = weak.lock(); + if (!shared) + { + return Failure; + } + auto cheerEmoteSets = ParseCheermoteSets(result.parseRapidJson()); std::vector emoteSets;