[frontend] Fix build issues with update checker (#3433)

Signed-off-by: crueter <crueter@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3433
This commit is contained in:
crueter
2026-01-31 01:45:12 +01:00
parent 638663b28e
commit 84fdbbaaa1
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -45,8 +45,7 @@ std::optional<std::string> UpdateChecker::GetResponse(std::string url, std::stri
};
client->set_follow_location(true);
httplib::Result result;
result = client->send(request);
httplib::Result result = client->send(request);
if (!result) {
LOG_ERROR(Frontend, "GET to {}{} returned null", url, path);