1
0
Fork 0
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:
M66B 2020-04-11 19:46:23 +02:00
parent 86ce76757f
commit d1554a30b9

View file

@ -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);
}