Skip to content

Commit

Permalink
Merge pull request #8243 from microsoft/jureid-patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Colengms authored Oct 12, 2021
2 parents 75289ad + ef339a4 commit 9b398b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extension/src/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function activate(): void {
if (packageInfo) {
let targetPopulation: TargetPopulation;
const userVersion: PackageVersion = new PackageVersion(packageInfo.version);
if (userVersion.suffix === "") {
if (!userVersion.suffix) {
targetPopulation = TargetPopulation.Public;
} else if (userVersion.suffix === "insiders") {
targetPopulation = TargetPopulation.Insiders;
Expand Down

0 comments on commit 9b398b1

Please sign in to comment.