mirror of
https://codeberg.org/tom79/Fedilab
synced 2025-01-05 23:37:48 +01:00
Fix a crash if app is killed
This commit is contained in:
parent
020d218df9
commit
f647c308a2
@ -143,7 +143,11 @@ public class CacheActivity extends BaseActivity {
|
||||
dialogRestart.dismiss();
|
||||
Helper.restart(CacheActivity.this);
|
||||
});
|
||||
restartBuilder.create().show();
|
||||
AlertDialog alertDialog = restartBuilder.create();
|
||||
if (!isFinishing()) {
|
||||
alertDialog.show();
|
||||
}
|
||||
|
||||
}));
|
||||
dialog.dismiss();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user