mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-15 06:22:49 +00:00
Fix an issue where the app would lock when showing DocumentsUI
This commit is contained in:
parent
1f2e45fd12
commit
6e5a80a000
4 changed files with 33 additions and 6 deletions
|
@ -55,6 +55,12 @@ public abstract class AegisActivity extends AppCompatActivity implements AegisAp
|
|||
super.onDestroy();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
super.onActivityResult(requestCode, resultCode, data);
|
||||
_app.setBlockAutoLock(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLocked(boolean userInitiated) {
|
||||
setResult(RESULT_CANCELED, null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue