Fixed line breaks plain text messages

This commit is contained in:
M66B 2019-05-09 15:59:51 +02:00
parent 3a388b7dff
commit 7bd1b0171f
1 changed files with 1 additions and 1 deletions

View File

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