From 66e407549e95d39bacd11035063cdd18d2ee09a4 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 9 Aug 2025 23:49:59 +0200 Subject: [PATCH] fix: Missing return value in update function --- lib/libimhex/source/api/imhex_api.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libimhex/source/api/imhex_api.cpp b/lib/libimhex/source/api/imhex_api.cpp index ecca3a9b6..6609afc69 100644 --- a/lib/libimhex/source/api/imhex_api.cpp +++ b/lib/libimhex/source/api/imhex_api.cpp @@ -1021,6 +1021,8 @@ namespace hex { EM_ASM({ window.location.href = window.location.origin + "/nightly"; }); break; } + + return true; #else // Get the path of the updater executable std::fs::path executablePath;