Bug 1505896 - fix JS error when calling this._telemetry.finish(A11Y_SERVICE_DURATION, this, true); on a11y panel open. r=gl

MozReview-Commit-ID: Ca338v6tuxV

Differential Revision: https://phabricator.services.mozilla.com/D11364

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Yura Zenevich 2018-11-09 15:58:04 +00:00
parent 01c8631200
commit e53d39cdd5

View File

@ -140,7 +140,7 @@ AccessibilityPanel.prototype = {
if (this.front.enabled) {
this._telemetry.start(A11Y_SERVICE_DURATION, this);
} else {
this._telemetry.finish(A11Y_SERVICE_DURATION, this);
this._telemetry.finish(A11Y_SERVICE_DURATION, this, true);
}
},