Handle switch of ssid to CharSequence (for spans)

Change to reference the string directly for places like search,
etc.

Bug: 20059794
Change-Id: I3305c9833e8aeea52b968c094d0a1881a3e6699e
This commit is contained in:
Jason Monk
2015-06-15 10:08:40 -04:00
parent edb7b0d9a9
commit c68b46c1f2
3 changed files with 4 additions and 4 deletions

View File

@@ -382,7 +382,7 @@ public class WifiConfigController implements TextWatcher,
config.hiddenSSID = true;
} else if (!mAccessPoint.isSaved()) {
config.SSID = AccessPoint.convertToQuotedString(
mAccessPoint.getSsid());
mAccessPoint.getSsidStr());
} else {
config.networkId = mAccessPoint.getConfig().networkId;
}