network: Fix a bad signal name

We try to disconnect from firmwareChangedId, not firmwareMissingId.

https://bugzilla.gnome.org/show_bug.cgi?id=701954
This commit is contained in:
Jasper St. Pierre 2013-06-09 21:39:27 -04:00
parent 2cbee05c8a
commit c6fe6eb7ab

View File

@ -416,8 +416,8 @@ const NMDevice = new Lang.Class({
// This state is actually a compound of various states (generically unavailable, // This state is actually a compound of various states (generically unavailable,
// firmware missing, carrier not available), that are exposed by different properties // firmware missing, carrier not available), that are exposed by different properties
// (whose state may or may not updated when we receive state-changed). // (whose state may or may not updated when we receive state-changed).
if (!this._firmwareMissingId) if (!this._firmwareChangedId)
this._firmwareMissingId = this.device.connect('notify::firmware-missing', Lang.bind(this, this._substateChanged)); this._firmwareChangedId = this.device.connect('notify::firmware-missing', Lang.bind(this, this._substateChanged));
if (this.device.firmware_missing) { if (this.device.firmware_missing) {
/* Translators: this is for devices that require some kind of firmware or kernel /* Translators: this is for devices that require some kind of firmware or kernel
module, which is missing */ module, which is missing */