some concurrency additions (#2698)

This commit is contained in:
fourtf
2021-05-01 13:38:58 +02:00
committed by GitHub
parent 345bcdb963
commit 8b3f301c50
10 changed files with 84 additions and 54 deletions
+4 -1
View File
@@ -123,7 +123,10 @@ void IgnoresPage::onShow()
}
QStringList users;
for (const auto &blockedUser : user->getBlocks())
auto blocks = app->accounts->twitch.getCurrent()->accessBlocks();
for (const auto &blockedUser : *blocks)
{
users << blockedUser.name;
}