diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-03-05 19:24:11 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-03-05 19:24:11 -0500 |
commit | 8baaecd89c830d65aaeffe0b01931a7b0706ec47 (patch) | |
tree | 868f17e602244ca5f562ad42f831dd44a245371f /toolkit | |
parent | aaedcc45fbd2eab564ab402ee1519e788f13387e (diff) | |
download | uxp-8baaecd89c830d65aaeffe0b01931a7b0706ec47.tar.gz |
Issue #1470 - Part 2: Change calls from UpdateUtils.getUpdateChannel() to UpdateUtils.UpdateChannel in telemetry modules
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/components/telemetry/TelemetryController.jsm | 2 | ||||
-rw-r--r-- | toolkit/components/telemetry/TelemetryEnvironment.jsm | 2 | ||||
-rw-r--r-- | toolkit/components/telemetry/TelemetryReportingPolicy.jsm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/components/telemetry/TelemetryController.jsm b/toolkit/components/telemetry/TelemetryController.jsm index b8de776da3..86de87d02d 100644 --- a/toolkit/components/telemetry/TelemetryController.jsm +++ b/toolkit/components/telemetry/TelemetryController.jsm @@ -365,7 +365,7 @@ var Impl = { let updateChannel = null; try { - updateChannel = UpdateUtils.getUpdateChannel(false); + updateChannel = UpdateUtils.UpdateChannel; } catch (e) { this._log.trace("_getApplicationSection - Unable to get update channel.", e); } diff --git a/toolkit/components/telemetry/TelemetryEnvironment.jsm b/toolkit/components/telemetry/TelemetryEnvironment.jsm index 391ea4bb4a..f88dfc5f0d 100644 --- a/toolkit/components/telemetry/TelemetryEnvironment.jsm +++ b/toolkit/components/telemetry/TelemetryEnvironment.jsm @@ -1106,7 +1106,7 @@ EnvironmentCache.prototype = { _updateSettings: function () { let updateChannel = null; try { - updateChannel = UpdateUtils.getUpdateChannel(false); + updateChannel = UpdateUtils.UpdateChannel; } catch (e) {} this._currentEnvironment.settings = { diff --git a/toolkit/components/telemetry/TelemetryReportingPolicy.jsm b/toolkit/components/telemetry/TelemetryReportingPolicy.jsm index d9c99df492..6ad534f530 100644 --- a/toolkit/components/telemetry/TelemetryReportingPolicy.jsm +++ b/toolkit/components/telemetry/TelemetryReportingPolicy.jsm @@ -254,7 +254,7 @@ var TelemetryReportingPolicyImpl = { // use the general minimum policy version. let channel = ""; try { - channel = UpdateUtils.getUpdateChannel(false); + channel = UpdateUtils.UpdateChannel; } catch (e) { this._log.error("minimumPolicyVersion - Unable to retrieve the current channel."); return minPolicyVersion; |