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

Commit 767b9667 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 545bd4de c825db11
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;