mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 19:34:15 +01:00
Fixed empty signatures
This commit is contained in:
@@ -223,9 +223,9 @@ public class FragmentCompose extends FragmentEx {
|
||||
int at = (identity == null ? -1 : identity.email.indexOf('@'));
|
||||
tvExtraPrefix.setText(at < 0 ? null : identity.email.substring(0, at));
|
||||
tvExtraSuffix.setText(at < 0 ? null : identity.email.substring(at));
|
||||
Spanned signature = null;
|
||||
if (pro) {
|
||||
Spanned signature = null;
|
||||
if (identity != null && identity.signature != null)
|
||||
if (identity != null && !TextUtils.isEmpty(identity.signature))
|
||||
signature = Html.fromHtml(identity.signature, new Html.ImageGetter() {
|
||||
@Override
|
||||
public Drawable getDrawable(String source) {
|
||||
@@ -236,9 +236,9 @@ public class FragmentCompose extends FragmentEx {
|
||||
return d;
|
||||
}
|
||||
}, null);
|
||||
tvSignature.setText(signature);
|
||||
grpSignature.setVisibility(signature == null ? View.GONE : View.VISIBLE);
|
||||
}
|
||||
tvSignature.setText(signature);
|
||||
grpSignature.setVisibility(signature == null ? View.GONE : View.VISIBLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -704,7 +704,8 @@ public class FragmentIdentity extends FragmentEx {
|
||||
etEmail.setText(identity == null ? null : identity.email);
|
||||
|
||||
etDisplay.setText(identity == null ? null : identity.display);
|
||||
etSignature.setText(identity == null || identity.signature == null ? null : Html.fromHtml(identity.signature));
|
||||
etSignature.setText(identity == null ||
|
||||
TextUtils.isEmpty(identity.signature) ? null : Html.fromHtml(identity.signature));
|
||||
|
||||
etHost.setText(identity == null ? null : identity.host);
|
||||
cbStartTls.setChecked(identity == null ? false : identity.starttls);
|
||||
|
||||
Reference in New Issue
Block a user