Fixed bug where multiple access points would show connected

Bug: 16236217
Change-Id: I0d95c753025f0787ca03876bab1fb66ec7916bf7
This commit is contained in:
PauloftheWest
2014-07-23 14:24:56 -07:00
parent 1a0297c544
commit 85f545b5d9

View File

@@ -566,6 +566,12 @@ class AccessPoint extends Preference {
} }
} }
// This is a workaround, see bug report...
if (summary.length() < 1) {
summary.append(" ");
}
if (WifiSettings.mVerboseLogging > 0) { if (WifiSettings.mVerboseLogging > 0) {
//add RSSI/band information for this config, what was seen up to 6 seconds ago //add RSSI/band information for this config, what was seen up to 6 seconds ago
//verbose WiFi Logging is only turned on thru developers settings //verbose WiFi Logging is only turned on thru developers settings
@@ -589,6 +595,7 @@ class AccessPoint extends Preference {
summary.append(")"); summary.append(")");
} }
} }
setSummary(summary.toString()); setSummary(summary.toString());
} }