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

Commit bf27f7da authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[RTT2] Fix build failure with new MacAddress"

parents 9724fc6f fe43d359
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -248,7 +248,10 @@ public class ResponderConfig implements Parcelable {
     * Point (AP), which can be obtained from {@link android.net.wifi.WifiManager#getScanResults()}.
     */
    public static ResponderConfig fromScanResult(ScanResult scanResult) {
        byte[] macAddress = new MacAddress(scanResult.BSSID).toByteArray();
        byte[] macAddress = null;
        if (scanResult.BSSID != null) {
            macAddress = MacAddress.byteAddrFromStringAddr(scanResult.BSSID);
        }
        int responderType = RESPONDER_AP;
        boolean supports80211mc = scanResult.is80211mcResponder();
        int channelWidth = translcateScanResultChannelWidth(scanResult.channelWidth);