1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 09:47:13 +00:00

Fixed multipart workaround

This commit is contained in:
M66B 2022-07-07 18:00:50 +02:00
parent 9aa14ccc51
commit 9b914df3a1

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 {