1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 18:59:01 +00:00

Fixed line breaks plain text messages

This commit is contained in:
M66B 2019-05-09 15:59:51 +02:00
parent 3a388b7dff
commit 7bd1b0171f

View file

@ -811,7 +811,7 @@ public class MessageHelper {
}
if (part.isMimeType("text/plain") || text) {
result = Html.escapeHtml(result);
result = TextUtils.htmlEncode(result);
result = result.replaceAll("\\r?\\n", "<br />");
result = "<span>" + result + "</span>";
}