Small improvement

This commit is contained in:
M66B 2019-06-02 09:16:21 +02:00
parent 3592bea8a8
commit 60dd38d822
1 changed files with 4 additions and 3 deletions

View File

@ -976,14 +976,15 @@ public class MessageHelper {
try {
if (part.isMimeType("multipart/*")) {
Multipart multipart;
final Object content = part.getContent();
Object content = part.getContent();
if (content instanceof Multipart)
multipart = (Multipart) part.getContent();
else {
else if (content instanceof String) {
String text = (String) content;
String sample = text.substring(0, Math.min(80, text.length()));
throw new ParseException(content.getClass().getName() + ": " + sample);
}
} else
throw new ParseException(content.getClass().getName());
for (int i = 0; i < multipart.getCount(); i++)
try {