From c6fe6eb7ab9854da425522455e37e1be74309b73 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 9 Jun 2013 21:39:27 -0400 Subject: [PATCH] network: Fix a bad signal name We try to disconnect from firmwareChangedId, not firmwareMissingId. https://bugzilla.gnome.org/show_bug.cgi?id=701954 --- js/ui/status/network.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index c820a5445..288caf308 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -416,8 +416,8 @@ const NMDevice = new Lang.Class({ // This state is actually a compound of various states (generically unavailable, // firmware missing, carrier not available), that are exposed by different properties // (whose state may or may not updated when we receive state-changed). - if (!this._firmwareMissingId) - this._firmwareMissingId = this.device.connect('notify::firmware-missing', Lang.bind(this, this._substateChanged)); + if (!this._firmwareChangedId) + this._firmwareChangedId = this.device.connect('notify::firmware-missing', Lang.bind(this, this._substateChanged)); if (this.device.firmware_missing) { /* Translators: this is for devices that require some kind of firmware or kernel module, which is missing */