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

Commit 3278c403 authored by Joanne Chung's avatar Joanne Chung Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in AutofillManager when feature autofill is disabled" into sc-dev

parents 9def5255 134d0411
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1975,7 +1975,10 @@ public final class AutofillManager {
        if (client == null) {
            return false;
        }

        if (mService == null) {
            Log.w(TAG, "Autofill service is null!");
            return false;
        }
        if (mServiceClient == null) {
            mServiceClient = new AutofillManagerClient(this);
            try {