OSDN Git Service

Fix multiple SSIDs for same Passpoint issues
authorVinit Deshpande <vinitd@google.com>
Thu, 9 Jul 2015 23:53:12 +0000 (16:53 -0700)
committerVinit Deshpande <vinitd@google.com>
Fri, 10 Jul 2015 17:39:16 +0000 (10:39 -0700)
This change fixes Wifi Settings UI for passpoint. The
connected notification now should show up only for the
SSIDs that match.

Bug: 22200890
Change-Id: If69a9364eca5505fe2d4037217f1777fa4d823f5

packages/SettingsLib/src/com/android/settingslib/wifi/AccessPoint.java

index 9325246..07edd33 100644 (file)
@@ -624,9 +624,13 @@ public class AccessPoint implements Comparable<AccessPoint> {
                 mNetworkInfo != null && mNetworkInfo.getState() != State.DISCONNECTED;
     }
 
+    public boolean isPasspoint() {
+        return mConfig != null && mConfig.isPasspoint();
+    }
+
     /** Return whether the given {@link WifiInfo} is for this access point. */
     private boolean isInfoForThisAccessPoint(WifiInfo info) {
-        if (networkId != WifiConfiguration.INVALID_NETWORK_ID) {
+        if (isPasspoint() == false && networkId != WifiConfiguration.INVALID_NETWORK_ID) {
             return networkId == info.getNetworkId();
         } else {
             // Might be an ephemeral connection with no WifiConfiguration. Try matching on SSID.