diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 3f3806229..e2ae3f100 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -995,11 +995,7 @@ NMDeviceWireless.prototype = { obj = this._networks[pos]; obj.accessPoints.push(ap); } else { - let ssid = ap.get_ssid(); - if (ssid == null) - continue; - - obj = { ssid: ssid, + obj = { ssid: ap.get_ssid(), mode: ap.mode, security: this._getApSecurityType(ap), connections: [ ], @@ -1198,13 +1194,8 @@ NMDeviceWireless.prototype = { _accessPointAdded: function(device, accessPoint) { let pos = this._findNetwork(accessPoint); let apObj; - let ssid; let needsupdate = false; - ssid = accessPoint.get_ssid(); - if (ssid == null) - return; - if (pos != -1) { apObj = this._networks[pos]; if (apObj.accessPoints.indexOf(accessPoint) != -1) { @@ -1216,7 +1207,7 @@ NMDeviceWireless.prototype = { if (apObj.item) apObj.item.updateAccessPoints(apObj.accessPoints); } else { - apObj = { ssid: ssid, + apObj = { ssid: accessPoint.get_ssid(), mode: accessPoint.mode, security: this._getApSecurityType(accessPoint), connections: [ ],