Fixed default keep alive interval

This commit is contained in:
M66B 2018-10-23 15:47:29 +00:00
parent b181488bae
commit 3d21895ad5
1 changed files with 1 additions and 1 deletions

View File

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