Fixed crash

This commit is contained in:
M66B 2018-08-03 17:34:27 +00:00
parent 4ada1dba5d
commit 7e89563b48
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ public class MessageHelper {
private String getHtml(Part part) throws MessagingException {
if (part.isMimeType("text/*"))
try {
String s = (String) part.getContent();
String s = part.getContent().toString();
if (part.isMimeType("text/plain"))
s = "<pre>" + s.replaceAll("\\r?\\n", "<br />") + "</pre>";
return s;