Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3040307 authored by Irfan Sheriff's avatar Irfan Sheriff Committed by Android (Google) Code Review
Browse files

Merge "Fix ssid storage regression"

parents 7ef29b5a 58938159
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ public class WifiClientTest extends AndroidTestCase {
        List<WifiConfiguration> configList = mWifiManager.getConfiguredNetworks();
        boolean found = false;
        for (WifiConfiguration c : configList) {
            if (c.networkId == netId) {
            if (c.networkId == netId && c.SSID.equals(config.SSID)) {
                found = true;
            }
        }
+1 −1
Original line number Diff line number Diff line
@@ -1112,7 +1112,7 @@ class WifiConfigStore {

        value = WifiNative.getNetworkVariableCommand(netId, WifiConfiguration.ssidVarName);
        if (!TextUtils.isEmpty(value)) {
            config.SSID = removeDoubleQuotes(value);
            config.SSID = value;
        } else {
            config.SSID = null;
        }