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

Commit 472edd9c authored by Quang Luong's avatar Quang Luong Committed by android-build-merger
Browse files

Merge "Do not set AccessPoint.ssid to config.SSID for Passpoint networks" into qt-r1-dev

am: 767b9667

Change-Id: I9d9cc658fe0ecb1584197d58fe0a5632a28004e9
parents 7db94e4a 767b9667
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1435,7 +1435,7 @@ public class AccessPoint implements Comparable<AccessPoint> {

    void update(@Nullable WifiConfiguration config) {
        mConfig = config;
        if (mConfig != null) {
        if (mConfig != null && !isPasspoint()) {
            ssid = removeDoubleQuotes(mConfig.SSID);
        }
        networkId = config != null ? config.networkId : WifiConfiguration.INVALID_NETWORK_ID;