Small state fix

pull/178/head
M66B 5 years ago
parent 86ce76757f
commit d1554a30b9

@ -3693,7 +3693,8 @@ public class FragmentCompose extends FragmentBase {
@Override @Override
protected void onPostExecute(Bundle args) { protected void onPostExecute(Bundle args) {
int action = args.getInt("action"); 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); setBusy(false);
} }

Loading…
Cancel
Save