Merge "wifi: catch UnsupportedOperationException for getMatchingWifiConfig"

am: ae3bae715e

Change-Id: If47b5c5fae03ad2e6a68771da893acaad743fcbd
This commit is contained in:
Peter Qiu
2017-03-27 21:29:53 +00:00
committed by android-build-merger

View File

@ -394,10 +394,14 @@ public class WifiTracker {
// the given ScanResult. This is used for showing that a given AP
// (ScanResult) is available via a Passpoint provider (provider friendly
// name).
try {
WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result);
if (config != null) {
accessPoint.update(config);
}
} catch (UnsupportedOperationException e) {
// Passpoint not supported on the device.
}
}
accessPoints.add(accessPoint);