summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/js/web-install.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/static/js/web-install.js b/static/js/web-install.js
index 21bf1915..3fbec2d4 100644
--- a/static/js/web-install.js
+++ b/static/js/web-install.js
@@ -154,8 +154,7 @@ async function getLatestRelease() {
throw new Error(`device model (${product}) is not supported by the GrapheneOS web installer`);
}
- let channel = gs101Devices.includes(product) ? "beta" : "stable";
- let metadataResp = await fetch(`${RELEASES_URL}/${product}-${channel}`);
+ let metadataResp = await fetch(`${RELEASES_URL}/${product}-stable`);
let metadata = await metadataResp.text();
let releaseId = metadata.split(" ")[0];