always use stable channel for web installer again

This commit is contained in:
Daniel Micay 2022-08-25 16:48:14 -04:00
parent fc23a9ecb7
commit 66132efc9f

View File

@ -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];