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

Commit 782fa90b authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix NPE in AutofillManager when feature autofill is disabled"

parents 32a2e395 3218ac88
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1911,7 +1911,10 @@ public final class AutofillManager {
        if (client == null) {
            return;
        }

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