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

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

Merge "Fix the save UI does not restore"

parents e18f9584 add468c0
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -3827,6 +3827,12 @@ public class Activity extends ContextThemeWrapper
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            finishAfterTransition();
            finishAfterTransition();
        }
        }

        // Activity was launched when user tapped a link in the Autofill Save UI - Save UI must
        // be restored now.
        if (mIntent != null && mIntent.hasExtra(AutofillManager.EXTRA_RESTORE_SESSION_TOKEN)) {
            restoreAutofillSaveUi();
        }
    }
    }


    /**
    /**