From fb602bb88975d9160a835ad519253146745a2071 Mon Sep 17 00:00:00 2001 From: Daniel McGuire <146508360+DanielLMcGuire@users.noreply.github.com> Date: Sun, 11 Aug 2024 22:46:52 -0500 Subject: [PATCH] Update latest.html --- latest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.

'; }