Skip to content

Commit

Permalink
src/goSurvey: use go.dev/s/ link for the feedback survey
Browse files Browse the repository at this point in the history
Change-Id: If5c2a8b166041cedef66eb87be19718118929128
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/497536
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Todd Kulesza <tkulesza@google.com>
  • Loading branch information
fflewddur authored and gopherbot committed May 23, 2023
1 parent e0d7ae9 commit 93ce48a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goSurvey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Could you help us improve this extension by filling out a 1-2 minute survey abou
const usersGoplsVersion = await getLocalGoplsVersion(latestConfig);
const goV = await getGoVersion();
const goVersion = goV ? (goV.isDevel ? 'devel' : goV.format(true)) : 'na';
const surveyURL = `https://google.qualtrics.com/jfe/form/SV_agUVNbrDS0Cak2W?usingGopls=${goplsEnabled}&gopls=${usersGoplsVersion?.version}&extid=${extensionId}&go=${goVersion}&os=${process.platform}`;
const surveyURL = `https://go.dev/s/ide-hats-survey/?s=c&usingGopls=${goplsEnabled}&gopls=${usersGoplsVersion?.version}&extid=${extensionId}&go=${goVersion}&os=${process.platform}`;
await vscode.env.openExternal(vscode.Uri.parse(surveyURL));
}
break;
Expand Down

0 comments on commit 93ce48a

Please sign in to comment.