diff --git a/src/Application.cpp b/src/Application.cpp index c491b36f80a..870e09d1aa7 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -747,19 +747,21 @@ void Application::initSeventvEventAPI() chan.updateSeventvUser(data); }); }); - this->twitch->seventvEventAPI->signals_.personalEmoteSetAdded.connect( - [&](const auto &data) { - postToThread([this, data]() { - this->twitch->forEachChannelAndSpecialChannels([=](auto chan) { - if (auto *twitchChannel = - dynamic_cast(chan.get())) - { - twitchChannel->upsertPersonalSeventvEmotes(data.first, - data.second); - } + std::ignore = + this->twitch->seventvEventAPI->signals_.personalEmoteSetAdded.connect( + [&](const auto &data) { + postToThread([this, data]() { + this->twitch->forEachChannelAndSpecialChannels( + [=](auto chan) { + if (auto *twitchChannel = + dynamic_cast(chan.get())) + { + twitchChannel->upsertPersonalSeventvEmotes( + data.first, data.second); + } + }); }); }); - }); this->twitch->seventvEventAPI->start(); }