Fixed multipart workaround

This commit is contained in:
M66B 2022-07-07 18:00:50 +02:00
parent 9aa14ccc51
commit 9b914df3a1
1 changed files with 1 additions and 1 deletions

View File

@ -4273,7 +4273,7 @@ public class MessageHelper {
content = tryParseMultipart((String) content, part.getContentType());
if (content instanceof Multipart) {
multipart = (Multipart) part.getContent();
multipart = (Multipart) content;
int count = multipart.getCount();
for (int i = 0; i < count; i++)
try {