am ac1dedaf: am d89febb6: Merge "Fixed bug where multiple access points would show connected" into lmp-dev

* commit 'ac1dedafa197624568b6959c5b497b877791d9dc':
  Fixed bug where multiple access points would show connected
This commit is contained in:
PauloftheWest
2014-07-23 22:00:48 +00:00
committed by Android Git Automerger

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) {
//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
@@ -589,6 +595,7 @@ class AccessPoint extends Preference {
summary.append(")");
}
}
setSummary(summary.toString());
}