mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
0.43 release
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user