summaryrefslogtreecommitdiff
path: root/static/js/web-install.js
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2022-08-25 16:48:14 -0400
committerDaniel Micay <danielmicay@gmail.com>2022-08-25 23:15:08 -0400
commit66132efc9ff5ad58a2b6ea3e47173fd52d6a9019 (patch)
treeecbdc9f2c8e573fa45bee8f580552a56ac7186f0 /static/js/web-install.js
parentfc23a9ecb72acc216f132002df5b654e3a0b092f (diff)
always use stable channel for web installer again
Diffstat (limited to 'static/js/web-install.js')
-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];