mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 23:12:55 +00:00
Small layout improvement
This commit is contained in:
parent
b6690ed3ec
commit
cc9c04641e
1 changed files with 2 additions and 2 deletions
|
@ -4611,9 +4611,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
if (native_dkim && !TextUtils.isEmpty(message.signedby)) {
|
||||
if (sb.length() > 0)
|
||||
sb.append('\n');
|
||||
sb.append("Signed by:").append('\n');
|
||||
sb.append("Signed by:");
|
||||
for (String signer : message.signedby.split(","))
|
||||
sb.append(signer).append('\n');
|
||||
sb.append('\n').append(signer);
|
||||
}
|
||||
|
||||
if (Boolean.TRUE.equals(message.blocklist)) {
|
||||
|
|
Loading…
Reference in a new issue