Track keystore password method changes

Change-Id: I324914c00195d762cbaa8c63084e41fa796b7df8
This commit is contained in:
Chad Brubaker
2015-05-07 10:29:18 -07:00
parent 840002d66c
commit 7236f2abba
2 changed files with 2 additions and 2 deletions

View File

@@ -457,7 +457,7 @@ public final class CredentialStorage extends Activity {
String password = data.getStringExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD);
if (!TextUtils.isEmpty(password)) {
// success
mKeyStore.password(password);
mKeyStore.unlock(password);
// return to onResume
return;
}