Skip to content

Commit 9b398b1

Browse files
authored
Merge pull request #8243 from microsoft/jureid-patch-2
2 parents 75289ad + ef339a4 commit 9b398b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/telemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function activate(): void {
6565
if (packageInfo) {
6666
let targetPopulation: TargetPopulation;
6767
const userVersion: PackageVersion = new PackageVersion(packageInfo.version);
68-
if (userVersion.suffix === "") {
68+
if (!userVersion.suffix) {
6969
targetPopulation = TargetPopulation.Public;
7070
} else if (userVersion.suffix === "insiders") {
7171
targetPopulation = TargetPopulation.Insiders;

0 commit comments

Comments
 (0)