Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* fix #219336

* fix owner
  • Loading branch information
sandy081 committed Jul 1, 2024
1 parent 2e12c97 commit ea1445c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,11 @@ class ConfigurationTelemetryContribution extends Disposable implements IWorkbenc
? 'default'
: 'custom';
this.telemetryService.publicLog2<UpdatedSettingEvent, {
owner: 'bpasero';
owner: 'sandy081';
comment: 'This is used to know the new window profile that is being used';
settingValue: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'if the profile is default or not' };
source: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'source of the setting' };
}>('window.systemColorTheme', { settingValue, source });
}>('window.newWindowProfile', { settingValue, source });
return;
}

Expand All @@ -445,7 +445,7 @@ class ConfigurationTelemetryContribution extends Disposable implements IWorkbenc
comment: 'This is used to know if extensions are getting auto restarted or not';
settingValue: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'value of the setting' };
source: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'source of the setting' };
}>('window.systemColorTheme', { settingValue: this.getValueToReport(key, target), source });
}>('extensions.autoRestart', { settingValue: this.getValueToReport(key, target), source });
return;
}
}
Expand Down

0 comments on commit ea1445c

Please sign in to comment.