Skip to content

Commit

Permalink
Allow custom data viewer for Insiders (#15069)
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix authored Jan 24, 2024
1 parent f80095b commit 6de51d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/platform/common/experiments/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ export class ExperimentService implements IExperimentService {
) {
return true;
}
if (
experiment === ExperimentGroups.DataViewerContribution &&
(getVSCodeChannel() === 'insiders' || isPreReleaseVersion())
) {
return true;
}

// If getTreatmentVariable returns undefined,
// it means that the value for this experiment was not found on the server.
Expand Down

0 comments on commit 6de51d5

Please sign in to comment.