fix: Store hanging when updating all entries in some cases
This commit is contained in:
parent
46ed6e2487
commit
9de10df90d
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user