mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
d51505b717
commit
6916b279f1
|
@ -298,7 +298,8 @@ public class EntityMessage implements Serializable {
|
|||
Element strong = document.createElement("strong");
|
||||
strong.text(Helper.getString(context, l, R.string.title_received) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(DF.format(received));
|
||||
if (received != null) // embedded messages
|
||||
p.appendText(DF.format(received));
|
||||
p.appendElement("br");
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue