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

Commit 3105289a authored by Jan Nordqvist's avatar Jan Nordqvist Committed by Android Partner Code Review
Browse files

Merge "More fixes to get passpoint working" into m-wireless-dev

parents 6c6fab23 ad25bb89
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;