Bug 1046910 - TypeError: this._experiments is null at Experiments.Experiments.prototype._getState. r=ttaubert

This commit is contained in:
Georg Fritzsche 2014-08-01 14:38:45 +02:00
parent 1444a90117
commit b63dd7beb8

View File

@ -505,7 +505,7 @@ Experiments.Experiments.prototype = {
hasTimer: !!this._hasTimer,
hasAddonProvider: !!gAddonProvider,
latestLogs: this._forensicsLogs,
experiments: this._experiments.keys(),
experiments: this._experiments ? this._experiments.keys() : null,
terminateReason: this._terminateReason,
};
if (this._latestError) {