Skip to content

Commit

Permalink
Include all versions from golang.org/dl in 'Choose Go Environment'
Browse files Browse the repository at this point in the history
fixes #1743
  • Loading branch information
bkmeneguello committed Sep 1, 2021
1 parent 09d4bbe commit c944b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goEnvironmentStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ async function fetchDownloadableGoVersions(): Promise<GoEnvironmentOption[]> {
// fetch information about what Go versions are available to install
let webResults;
try {
webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json');
webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json&include=all');
} catch (error) {
return [];
}
Expand Down

0 comments on commit c944b91

Please sign in to comment.