fixed live status being cached

This commit is contained in:
fourtf
2018-01-23 21:40:51 +01:00
parent dd05ea28fe
commit f292d2e097
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ void TwitchChannel::refreshLiveStatus()
std::weak_ptr<Channel> weak = this->shared_from_this();
util::twitch::get2(url, QThread::currentThread(), [weak](const rapidjson::Document &d) {
util::twitch::get2(url, QThread::currentThread(), false, [weak](const rapidjson::Document &d) {
SharedChannel shared = weak.lock();
if (!shared) {