Prevent loop

This commit is contained in:
M66B 2019-05-31 19:19:57 +02:00
parent e5edb6b230
commit c6a3da5a58
1 changed files with 1 additions and 1 deletions

View File

@ -1128,7 +1128,7 @@ public class FragmentAccount extends FragmentBase {
etRealm.setText(account == null ? null : account.realm);
etName.setText(account == null ? null : account.name);
cbNotify.setChecked(account == null ? false : account.notify);
cbNotify.setChecked(account != null && account.notify && Helper.isPro(getContext()));
cbSynchronize.setChecked(account == null ? true : account.synchronize);
cbPrimary.setChecked(account == null ? false : account.primary);