1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 05:34:51 +00:00

Signed by

This commit is contained in:
M66B 2024-05-13 16:45:27 +02:00
parent 01621724cd
commit a88379a09d

View file

@ -4954,7 +4954,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
if (native_dkim && !TextUtils.isEmpty(message.signedby)) {
sb.append("Signed by:");
sb.append(context.getString(R.string.title_signed_by)).append(' ');
for (String signer : message.signedby.split(","))
sb.append(signer).append('\n');
}