diff --git a/docs/static/archived-versions.json b/docs/static/archived-versions.json index 45c582f4f7..67f4e6143c 100644 --- a/docs/static/archived-versions.json +++ b/docs/static/archived-versions.json @@ -1,7 +1,7 @@ [ { "label": "1.106.1", - "url": "https://1.106.1.archive.immich.app" + "url": "https://v1.106.1.archive.immich.app" }, { "label": "v1.105.1", diff --git a/misc/release/archive-version.js b/misc/release/archive-version.js index 449fe19eb2..eb77f273e0 100755 --- a/misc/release/archive-version.js +++ b/misc/release/archive-version.js @@ -10,7 +10,7 @@ if (!lastVersion) { const filename = './docs/static/archived-versions.json'; const oldVersions = JSON.parse(readFileSync(filename)); const newVersions = [ - { label: lastVersion, url: `https://${lastVersion}.archive.immich.app` }, + { label: lastVersion, url: `https://v${lastVersion}.archive.immich.app` }, ...oldVersions, ];