diff --git a/src/goEnvironmentStatus.ts b/src/goEnvironmentStatus.ts index 5958329422..e6bb4d3096 100644 --- a/src/goEnvironmentStatus.ts +++ b/src/goEnvironmentStatus.ts @@ -502,7 +502,7 @@ async function fetchDownloadableGoVersions(): Promise { // fetch information about what Go versions are available to install let webResults; try { - webResults = await WebRequest.json('https://golang.org/dl/?mode=json'); + webResults = await WebRequest.json('https://golang.org/dl/?mode=json&include=all'); } catch (error) { return []; }