Small state fix

This commit is contained in:
M66B 2020-04-11 19:46:23 +02:00
parent 86ce76757f
commit d1554a30b9
1 changed files with 2 additions and 1 deletions

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