Signed by

This commit is contained in:
M66B 2024-05-13 16:45:27 +02:00
parent 01621724cd
commit a88379a09d
1 changed files with 1 additions and 1 deletions

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');
}