mirror of https://github.com/M66B/FairEmail.git
Prevent loop
This commit is contained in:
parent
e5edb6b230
commit
c6a3da5a58
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue