mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 07:36:31 +02:00
Prevent loop
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user