mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 08:29:24 +00:00
Fixed encoding of nested messages (2)
This commit is contained in:
parent
e7b2d0a59e
commit
bf6d596ce6
1 changed files with 5 additions and 0 deletions
|
@ -912,6 +912,11 @@ public class IMAPMessage extends MimeMessage implements ReadableMime {
|
|||
return;
|
||||
}
|
||||
InputStream is = getMimeStream();
|
||||
if (this instanceof IMAPNestedMessage) {
|
||||
String encoding = getEncoding();
|
||||
if (encoding != null)
|
||||
is = MimeUtility.decode(is, encoding);
|
||||
}
|
||||
try {
|
||||
// write out the bytes
|
||||
byte[] bytes = new byte[16*1024];
|
||||
|
|
Loading…
Add table
Reference in a new issue