Merge pull request #111 from alexbakker/fix-intro-decrypt

Don't ignore the result of IntroActivity when the vault is locked
This commit is contained in:
Michael Schättgen 2019-05-30 19:42:17 +02:00 committed by GitHub
commit 128c85fc0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -148,7 +148,7 @@ public class MainActivity extends AegisActivity implements EntryListView.Listene
} }
// don't process any activity results if the vault is locked // don't process any activity results if the vault is locked
if (requestCode != CODE_DECRYPT && _db.isLocked()) { if (requestCode != CODE_DECRYPT && requestCode != CODE_DO_INTRO && _db.isLocked()) {
return; return;
} }