mirror of https://github.com/M66B/FairEmail.git
Fixed multipart workaround
This commit is contained in:
parent
9aa14ccc51
commit
9b914df3a1
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue