mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Fix accidental case fallthroughs in experimentation services. (#161339)
This commit is contained in:
committed by
GitHub
parent
f8600d2dac
commit
5cde74b767
@@ -35,14 +35,19 @@ export class ExperimentationService implements vscode.Disposable {
|
||||
switch (vscode.env.uriScheme) {
|
||||
case 'vscode':
|
||||
targetPopulation = tas.TargetPopulation.Public;
|
||||
break;
|
||||
case 'vscode-insiders':
|
||||
targetPopulation = tas.TargetPopulation.Insiders;
|
||||
break;
|
||||
case 'vscode-exploration':
|
||||
targetPopulation = tas.TargetPopulation.Internal;
|
||||
break;
|
||||
case 'code-oss':
|
||||
targetPopulation = tas.TargetPopulation.Team;
|
||||
break;
|
||||
default:
|
||||
targetPopulation = tas.TargetPopulation.Public;
|
||||
break;
|
||||
}
|
||||
|
||||
const id = this._extensionContext.extension.id;
|
||||
|
||||
Reference in New Issue
Block a user