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

Commit ad25bb89 authored by Vinit Deshpande's avatar Vinit Deshpande
Browse files

More fixes to get passpoint working

Change-Id: If8639bb0fd3bdaad7ee09217a9152c1695cb9354
parent 2877877d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -950,8 +950,7 @@ public class WifiConfiguration implements Parcelable {
     * Identify if this configuration represents a passpoint network
     */
    public boolean isPasspoint() {
        return TextUtils.isEmpty(SSID)
                && !TextUtils.isEmpty(FQDN)
        return !TextUtils.isEmpty(FQDN)
                && !TextUtils.isEmpty(providerFriendlyName)
                && enterpriseConfig != null
                && enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.NONE;