Skip to content

Commit c944b91

Browse files
authored
Include all versions from golang.org/dl in 'Choose Go Environment'
fixes golang#1743
1 parent 09d4bbe commit c944b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goEnvironmentStatus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ async function fetchDownloadableGoVersions(): Promise<GoEnvironmentOption[]> {
502502
// fetch information about what Go versions are available to install
503503
let webResults;
504504
try {
505-
webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json');
505+
webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json&include=all');
506506
} catch (error) {
507507
return [];
508508
}

0 commit comments

Comments
 (0)