mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Small state fix
This commit is contained in:
parent
86ce76757f
commit
d1554a30b9
1 changed files with 2 additions and 1 deletions
|
@ -3693,7 +3693,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
@Override
|
||||
protected void onPostExecute(Bundle args) {
|
||||
int action = args.getInt("action");
|
||||
if (action != R.id.action_check)
|
||||
boolean needsEncryption = args.getBoolean("needsEncryption");
|
||||
if (action != R.id.action_check || needsEncryption)
|
||||
setBusy(false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue