Loading src/com/android/settings/password/SaveAndFinishWorker.java +6 −1 Original line number Diff line number Diff line Loading @@ -107,9 +107,14 @@ public class SaveAndFinishWorker extends Fragment { @VisibleForTesting Pair<Boolean, Intent> saveAndVerifyInBackground() { final int userId = mUserId; try { if (!mUtils.setLockCredential(mChosenCredential, mCurrentCredential, userId)) { return Pair.create(false, null); } } catch (RuntimeException e) { Log.e(TAG, "Failed to set lockscreen credential", e); return Pair.create(false, null); } unifyProfileCredentialIfRequested(); Loading Loading
src/com/android/settings/password/SaveAndFinishWorker.java +6 −1 Original line number Diff line number Diff line Loading @@ -107,9 +107,14 @@ public class SaveAndFinishWorker extends Fragment { @VisibleForTesting Pair<Boolean, Intent> saveAndVerifyInBackground() { final int userId = mUserId; try { if (!mUtils.setLockCredential(mChosenCredential, mCurrentCredential, userId)) { return Pair.create(false, null); } } catch (RuntimeException e) { Log.e(TAG, "Failed to set lockscreen credential", e); return Pair.create(false, null); } unifyProfileCredentialIfRequested(); Loading