Skip to content

Commit

Permalink
always use stable channel for web installer again
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Aug 26, 2022
1 parent fc23a9e commit 66132ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions static/js/web-install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit 66132ef

Please sign in to comment.