mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-05-18 10:12:35 +02:00
Only try again paste/set after decryption if the correct password was entered and not e.g. cancel button pressed
This commit is contained in:
parent
02bfcf6c3f
commit
e937ddf111
|
|
@ -28,6 +28,8 @@ public class AutofillActivity extends AppCompatActivity {
|
|||
@Override
|
||||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
finish();
|
||||
AutofillService.getService().decryptAndVerify();
|
||||
if (resultCode == RESULT_OK) {
|
||||
AutofillService.getService().decryptAndVerify();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue