mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 01:06:04 +00:00
Prevent crash
This commit is contained in:
parent
d51505b717
commit
6916b279f1
1 changed files with 2 additions and 1 deletions
|
@ -298,7 +298,8 @@ public class EntityMessage implements Serializable {
|
||||||
Element strong = document.createElement("strong");
|
Element strong = document.createElement("strong");
|
||||||
strong.text(Helper.getString(context, l, R.string.title_received) + " ");
|
strong.text(Helper.getString(context, l, R.string.title_received) + " ");
|
||||||
p.appendChild(strong);
|
p.appendChild(strong);
|
||||||
p.appendText(DF.format(received));
|
if (received != null) // embedded messages
|
||||||
|
p.appendText(DF.format(received));
|
||||||
p.appendElement("br");
|
p.appendElement("br");
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue