Skip to content

Commit 157d74b

Browse files
Merge branch 'main' into auto-update
2 parents b1ad596 + 338f1f2 commit 157d74b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog.d/+source-waitlist.added.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added source identifier to waitlist register

src/waitlist.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const WAITLIST_CTA_REPEAT = 30;
1717
export async function waitlistRegisterCommand(email?: string, blockPrompt?: boolean): Promise<IWaitlistResult> {
1818
if (email && email.length > 0) {
1919
try {
20-
let response = await axios.postForm(`https://waitlist.metalbear.co/v1/waitlist`, { email });
20+
let response = await axios.postForm(`https://waitlist.metalbear.co/v1/waitlist?source=vscode`, { email });
2121

2222
if (response.status === 200) {
2323
return {

0 commit comments

Comments
 (0)