fix: Store hanging when updating all entries in some cases

This commit is contained in:
WerWolv
2024-04-10 22:52:21 +02:00
parent 46ed6e2487
commit 9de10df90d

View File

@@ -207,8 +207,8 @@ namespace hex::plugin::builtin {
m_download.wait();
while (m_download.valid()) {
std::this_thread::sleep_for(10ms);
while (m_download.wait_for(100ms) != std::future_status::ready) {
task.update();
}
task.increment();