Skip to content

Commit 3817384

Browse files
committed
Fix #71
1 parent 4a8b3a6 commit 3817384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/baseTelemetryReporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class BaseTelemtryReporter {
152152
commonProperties["common.vscodemachineid"] = vscode.env.machineId;
153153
commonProperties["common.vscodesessionid"] = vscode.env.sessionId;
154154
commonProperties["common.vscodeversion"] = vscode.version;
155-
commonProperties["common.isnewappinstall"] = vscode.env.isNewAppInstall.toString();
155+
commonProperties["common.isnewappinstall"] = vscode.env.isNewAppInstall ? vscode.env.isNewAppInstall.toString() : false;
156156
commonProperties["common.product"] = vscode.env.appHost;
157157

158158
switch (vscode.env.uiKind) {

0 commit comments

Comments
 (0)