SaveTool: fix the checker mutex not unlocking properly.

This commit is contained in:
Guillaume Jacquemin 2023-10-29 15:42:15 +01:00
parent e4ef5d4423
commit 57b4af4637

View file

@ -132,7 +132,8 @@ SaveTool::drawMainMenu() {
_updateThread = std::thread{[this]{ checkForUpdates(); }};
}
if(_checker && (_checkerMutex.try_lock() && _checker->updateAvailable())) {
if(_checker && _checkerMutex.try_lock()) {
if(_checker->updateAvailable()) {
drawAlignedText("Version %s is available.", Containers::String{_checker->version()}.data());
if(ImGui::Button(ICON_FA_FILE_SIGNATURE " Release notes")) {
openUri("https://williamjcm.ovh/mbst");
@ -141,6 +142,7 @@ SaveTool::drawMainMenu() {
if(ImGui::Button(ICON_FA_DOWNLOAD " Download now")) {
openUri(_checker->downloadLink());
}
}
_checkerMutex.unlock();
}