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

Commit dafb19bb authored by Shinji Sogo's avatar Shinji Sogo Committed by android-build-merger
Browse files

Merge "Don't compare FQDN with providerFriendlyName" am: aae64557 am: 9c841605

am: b8bab1df

Change-Id: Ic019a0f04737d128cc5005be8fe9733f30ee44a3
parents 29331aed b8bab1df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -254,7 +254,7 @@ public class AccessPoint implements Comparable<AccessPoint> {

    public boolean matches(WifiConfiguration config) {
        if (config.isPasspoint() && mConfig != null && mConfig.isPasspoint()) {
            return config.FQDN.equals(mConfig.providerFriendlyName);
            return config.FQDN.equals(mConfig.FQDN);
        } else {
            return ssid.equals(removeDoubleQuotes(config.SSID))
                    && security == getSecurity(config)