Merge pull request #1454 from alexbakker/pass-popup-check

Add an extra check before showing the password reminder popup
This commit is contained in:
Michael Schättgen 2024-08-11 18:07:22 +02:00 committed by GitHub
commit bc5cb488f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -241,7 +241,7 @@ public class AuthActivity extends AegisActivity {
popup.setFocusable(false);
popup.setOutsideTouchable(true);
_textPassword.post(() -> {
if (isFinishing()) {
if (isFinishing() || !_textPassword.isAttachedToWindow()) {
return;
}