From 66132efc9ff5ad58a2b6ea3e47173fd52d6a9019 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 25 Aug 2022 16:48:14 -0400 Subject: [PATCH] always use stable channel for web installer again --- static/js/web-install.js | 3 +-- 1 file changed, 1 insertion(+), 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];