mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-23 23:39:14 +00:00
In the intro, wait for the derivation to be complete before continuing
This commit is contained in:
parent
0afc1b3a97
commit
ca68f0525d
1 changed files with 4 additions and 0 deletions
|
@ -109,6 +109,10 @@ public class IntroActivity extends AppIntro implements DerivationTask.Callback {
|
||||||
@Override
|
@Override
|
||||||
public void onDonePressed(Fragment currentFragment) {
|
public void onDonePressed(Fragment currentFragment) {
|
||||||
super.onDonePressed(currentFragment);
|
super.onDonePressed(currentFragment);
|
||||||
|
// wait for the key derivation background task
|
||||||
|
if (_passwordSlot == null || _passwordCipher == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
int cryptType = _authenticatedSlide.getCryptType();
|
int cryptType = _authenticatedSlide.getCryptType();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue