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

Commit ae3bae71 authored by Peter Qiu's avatar Peter Qiu Committed by Gerrit Code Review
Browse files

Merge "wifi: catch UnsupportedOperationException for getMatchingWifiConfig"

parents beb8cead 0ffb89d1
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -394,10 +394,14 @@ public class WifiTracker {
                        // the given ScanResult.  This is used for showing that a given AP
                        // the given ScanResult.  This is used for showing that a given AP
                        // (ScanResult) is available via a Passpoint provider (provider friendly
                        // (ScanResult) is available via a Passpoint provider (provider friendly
                        // name).
                        // name).
                        try {
                            WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result);
                            WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result);
                            if (config != null) {
                            if (config != null) {
                                accessPoint.update(config);
                                accessPoint.update(config);
                            }
                            }
                        } catch (UnsupportedOperationException e) {
                            // Passpoint not supported on the device.
                        }
                    }
                    }


                    accessPoints.add(accessPoint);
                    accessPoints.add(accessPoint);