We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d4bbe commit c944b91Copy full SHA for c944b91
src/goEnvironmentStatus.ts
@@ -502,7 +502,7 @@ async function fetchDownloadableGoVersions(): Promise<GoEnvironmentOption[]> {
502
// fetch information about what Go versions are available to install
503
let webResults;
504
try {
505
- webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json');
+ webResults = await WebRequest.json<GoVersionWebResult[]>('https://golang.org/dl/?mode=json&include=all');
506
} catch (error) {
507
return [];
508
}
0 commit comments