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

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

Merge "wifi: WifiConfigController: fix possible NPE in showSecurityFields" into oc-mr1-dev

parents 7fc4dd7e 486fc9dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -851,7 +851,7 @@ public class WifiConfigController implements TextWatcher,
            mEapIdentityView = (TextView) mView.findViewById(R.id.identity);
            mEapAnonymousView = (TextView) mView.findViewById(R.id.anonymous);

            if (mAccessPoint.isCarrierAp()) {
            if (mAccessPoint != null && mAccessPoint.isCarrierAp()) {
                mEapMethodSpinner.setSelection(mAccessPoint.getCarrierApEapType());
            }