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

Commit fe43d359 authored by Etan Cohen's avatar Etan Cohen
Browse files

[RTT2] Fix build failure with new MacAddress

Responder was using the new MacAddress before its finalization.
Fix reference to a (now removed) constructor.

Bug: 65014962
Test: unit tests & integration tests
Change-Id: I4d0fd32454c1362129e03deada2d6e6a253e2590
parent efb75842
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);