Consider additional accounts as secondary accounts

This commit is contained in:
M66B 2018-12-20 18:27:38 +01:00
parent 06e4fd6a6c
commit 24e267285f
1 changed files with 1 additions and 1 deletions

View File

@ -938,7 +938,7 @@ public class FragmentAccount extends FragmentEx {
cbNotify.setChecked(account == null ? false : account.notify);
cbSynchronize.setChecked(account == null ? true : account.synchronize);
cbPrimary.setChecked(account == null ? true : account.primary);
cbPrimary.setChecked(account == null ? false : account.primary);
etInterval.setText(account == null ? "" : Long.toString(account.poll_interval));
color = (account == null || account.color == null ? Color.TRANSPARENT : account.color);