Minor change to see if it fixes building
Some checks failed
eden-license / license-header (pull_request) Has been cancelled

Minor change to see if this fixes building on CI.
This commit is contained in:
Shinmegumi 2025-10-01 20:07:22 +02:00
parent 4be6d30cd9
commit c5971f8696

View file

@ -58,7 +58,7 @@ std::optional<std::string> UpdateChecker::GetResponse(std::string url, std::stri
std::optional<std::string> UpdateChecker::GetLatestRelease(bool include_prereleases)
{
constexpr auto update_check_url = std::string{Common::g_build_auto_update_api};
const auto update_check_url = std::string{Common::g_build_auto_update_api};
std::string update_check_path = fmt::format("/repos/{}", std::string{Common::g_build_auto_update_repo});
try {
if (include_prereleases) { // This can return either a prerelease or a stable release,