From 8119929eced712ccc13447427eb155e222d111cf Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 16 May 2023 14:59:14 +0200 Subject: [PATCH] fix: Don't wait for services on exit --- lib/libimhex/source/api/content_registry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/source/api/content_registry.cpp b/lib/libimhex/source/api/content_registry.cpp index c3bee51e7..21b99e2aa 100644 --- a/lib/libimhex/source/api/content_registry.cpp +++ b/lib/libimhex/source/api/content_registry.cpp @@ -804,7 +804,7 @@ namespace hex { } for (auto &service : getServices()) { - service.thread.join(); + service.thread.detach(); } }