Show 'date' instead of 'received' in extended reply header

This commit is contained in:
M66B
2021-04-24 17:21:02 +02:00
parent 6029f03eda
commit 36ef00fc32
2 changed files with 2 additions and 1 deletions

View File

@@ -357,7 +357,7 @@ public class EntityMessage implements Serializable {
}
if (received != null) { // embedded messages
Element strong = document.createElement("strong");
strong.text(Helper.getString(context, l, R.string.title_received) + " ");
strong.text(Helper.getString(context, l, R.string.title_date) + " ");
p.appendChild(strong);
p.appendText(DF.format(received));
p.appendElement("br");