diff options
| author | Daniel Micay <daniel.micay@grapheneos.org> | 2024-08-05 22:44:20 -0400 |
|---|---|---|
| committer | Daniel Micay <daniel.micay@grapheneos.org> | 2024-08-06 12:00:32 -0400 |
| commit | 3c10c94beb6c82a15152e3bea78b4ea22e888a81 (patch) | |
| tree | cfd1b6abc0b37bb5545766aef16b03122ecd17bf /static/js | |
| parent | de470b1c8f1043fbc3284bc29f06bb23bd81db63 (diff) | |
handle new factory images naming for web install
Diffstat (limited to 'static/js')
| -rw-r--r-- | static/js/web-install.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/web-install.js b/static/js/web-install.js index 6e2e53b3..66a30d5d 100644 --- a/static/js/web-install.js +++ b/static/js/web-install.js @@ -208,7 +208,7 @@ async function getLatestRelease() { let metadata = await metadataResp.text(); let releaseId = metadata.split(" ")[0]; - return [`${product}-factory-${releaseId}${hasOptimizedFactoryImage(product) ? "-opt" : ""}.zip`, product]; + return [`${product}-${hasOptimizedFactoryImage(product) ? "install" : "factory"}-${releaseId}.zip`, product]; } async function downloadRelease(setProgress) { |
