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

Commit c84e0820 authored by Quang Luong's avatar Quang Luong Committed by Android (Google) Code Review
Browse files

Merge "Remove double quote from AP key from a WifiConfiguration"

parents f8c8483e c2c947c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -622,7 +622,7 @@ public class AccessPoint implements Comparable<AccessPoint> {
                    .append(KEY_PREFIX_FQDN)
                    .append(config.FQDN).toString();
        } else {
            return getKey(config.SSID, config.BSSID, getSecurity(config));
            return getKey(removeDoubleQuotes(config.SSID), config.BSSID, getSecurity(config));
        }
    }