From c944b914b0c11fa63b66a5727f53f5aa6021f572 Mon Sep 17 00:00:00 2001 From: Bruno Meneguello <1322552+bkmeneguello@users.noreply.github.com> Date: Wed, 1 Sep 2021 18:49:04 -0300 Subject: [PATCH] Include all versions from golang.org/dl in 'Choose Go Environment' fixes #1743 --- src/goEnvironmentStatus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 []; }