File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/vs/workbench/services/telemetry Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class TelemetryService extends Disposable implements ITelemetryService {
5858 } ) ) ;
5959
6060 this . _register ( requestService . onDidCompleteRequest ( e => {
61- if ( e . callSite === NO_FETCH_TELEMETRY ) {
61+ if ( e . callSite === NO_FETCH_TELEMETRY || productService . quality === 'stable' ) {
6262 return ;
6363 }
6464 type FetchCallClassification = {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export class TelemetryService extends Disposable implements ITelemetryService {
7474 this . sendErrorTelemetry = this . impl . sendErrorTelemetry ;
7575
7676 this . _register ( requestService . onDidCompleteRequest ( e => {
77- if ( e . callSite === NO_FETCH_TELEMETRY ) {
77+ if ( e . callSite === NO_FETCH_TELEMETRY || productService . quality === 'stable' ) {
7878 return ;
7979 }
8080 type FetchCallClassification = {
You can’t perform that action at this time.
0 commit comments