diff --git a/latest.html b/latest.html index 805d053..e079b89 100644 --- a/latest.html +++ b/latest.html @@ -26,7 +26,7 @@ if (Array.isArray(versions) && versions.length > 0) { // Assume the latest version is the last in the list const latestVersion = versions[versions.length - 1]; - window.location.href = latestVersion; + window.location.href = `release/${latestVersion}`; } else { document.body.innerHTML = '

No versions available.

'; }