mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 23:26:12 +02:00
Small layout improvement
This commit is contained in:
@@ -2355,11 +2355,11 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (BuildConfig.DEBUG && headers instanceof SpannableStringBuilder) {
|
||||
SpannableStringBuilder ssb = (SpannableStringBuilder) headers;
|
||||
ssb.append('\n')
|
||||
.append("TLS=" + message.tls)
|
||||
.append(" DKIM=" + message.dkim)
|
||||
.append(" SPF=" + message.spf)
|
||||
.append(" DMARC=" + message.dmarc)
|
||||
.append(" BL=" + message.blocklist)
|
||||
.append("TLS=").append(message.tls == null ? "-" : (message.tls ? "✓" : "✗"))
|
||||
.append(" DKIM=").append(message.dkim == null ? "-" : (message.dkim ? "✓" : "✗"))
|
||||
.append(" SPF=").append(message.spf == null ? "-" : (message.spf ? "✓" : "✗"))
|
||||
.append(" DMARC=").append(message.dmarc == null ? "-" : (message.dmarc ? "✓" : "✗"))
|
||||
.append(" BL=").append(message.blocklist == null ? "-" : (message.blocklist ? "✓" : "✗"))
|
||||
.append('\n');
|
||||
}
|
||||
tvHeaders.setText(headers);
|
||||
|
||||
Reference in New Issue
Block a user