fortuna: fix accu thread joiner check in dtor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-21 16:03:26 +01:00
parent b24cf7566a
commit 11931ff3b1
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -46,7 +46,7 @@ Fortuna::~Fortuna() noexcept {
if (th_gen.joinable()) {
th_gen.join();
}
if (th_gen.joinable()) {
if (th_accu.joinable()) {
th_accu.join();
}
if (th_sfm.joinable()) {