0.43 release

This commit is contained in:
M66B
2018-09-08 07:33:17 +00:00
parent 94e8bc8e70
commit 2980a46b5c
4 changed files with 4 additions and 3 deletions

View File

@@ -774,7 +774,7 @@ public class FragmentAccount extends FragmentEx {
tilPassword.getEditText().setText(account == null ? null : account.password);
etName.setText(account == null ? null : account.name);
etSignature.setText(account == null ? null : Html.fromHtml(account.signature));
etSignature.setText(account == null || account.signature == null ? null : Html.fromHtml(account.signature));
cbSynchronize.setChecked(account == null ? true : account.synchronize);
cbPrimary.setChecked(account == null ? true : account.primary);