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

Commit 6b30136e authored by joshmccloskey's avatar joshmccloskey Committed by Joshua Mccloskey
Browse files

Fixed Infinite loop method call.

Test: Verified that setupwizard flow no longer causes infinite loop.
Fixes: 131106091
Change-Id: I0777fefa08063c62f7ef8cbbc252e219efa98f24
parent 2a14b7e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ public class SetupChooseLockGeneric extends ChooseLockGeneric {

        @Override
        protected Intent getBiometricEnrollIntent(Context context) {
            final Intent intent = getBiometricEnrollIntent(context);
            final Intent intent = super.getBiometricEnrollIntent(context);
            SetupWizardUtils.copySetupExtras(getActivity().getIntent(), intent);
            return intent;
        }