1
0
mirror of synced 2024-11-28 09:30:51 +01:00

fix: Don't wait for services on exit

This commit is contained in:
WerWolv 2023-05-16 14:59:14 +02:00
parent e1620966e5
commit 8119929ece

View File

@ -804,7 +804,7 @@ namespace hex {
}
for (auto &service : getServices()) {
service.thread.join();
service.thread.detach();
}
}