Revert "Normalize text for encryption"

This reverts commit 0d908457b8.
This commit is contained in:
M66B 2019-12-19 16:45:59 +01:00
parent db2ffc06b9
commit 0c959346bf
1 changed files with 0 additions and 10 deletions

View File

@ -466,16 +466,6 @@ public class MessageHelper {
String htmlContent = document.html();
String plainContent = HtmlHelper.getText(htmlContent);
if (message.encrypt != null && !EntityMessage.ENCRYPT_NONE.equals(message.encrypt)) {
// Normalize trailing spaces and new lines
Log.i("Normalizing for encryption");
htmlContent = htmlContent.replaceAll(" +$", "")
.replace("\\r?\\n", "\\r\\n");
plainContent = plainContent.replaceAll(" +$", "")
.replace("\\r?\\n", "\\r\\n");
}
BodyPart plainPart = new MimeBodyPart();
plainPart.setContent(plainContent, "text/plain; charset=" + Charset.defaultCharset().name());