Merge "Fix wifi network strings shown in Settings." into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
547089c376
@@ -271,8 +271,8 @@ public class WifiConfigController implements TextWatcher,
|
||||
|
||||
WifiInfo info = mAccessPoint.getInfo();
|
||||
if (info != null && info.getLinkSpeed() != -1) {
|
||||
addRow(group, R.string.wifi_speed, info.getLinkSpeed()
|
||||
+ WifiInfo.LINK_SPEED_UNITS);
|
||||
addRow(group, R.string.wifi_speed, String.format(
|
||||
res.getString(R.string.link_speed), info.getLinkSpeed()));
|
||||
}
|
||||
|
||||
if (info != null && info.getFrequency() != -1) {
|
||||
|
Reference in New Issue
Block a user