Bug 885156 - Set _started in PushService.init(). r=dougt

This commit is contained in:
Nikhil Marathe 2013-06-20 13:38:01 -07:00
Родитель e17c3ba51e
Коммит a4d0a3c54e
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -460,6 +460,8 @@ this.PushService = {
prefs.observe("serverURL", this);
// Used to monitor if the user wishes to disable Push.
prefs.observe("connection.enabled", this);
this._started = true;
},
_shutdownWS: function() {

Просмотреть файл

@ -27,6 +27,7 @@ PushServiceLauncher.prototype = {
Services.obs.addObserver(this, "final-ui-startup", true);
break;
case "final-ui-startup":
Services.obs.removeObserver(this, "final-ui-startup");
if (!Services.prefs.getBoolPref("services.push.enabled")) {
return;
}