mirror of https://github.com/M66B/FairEmail.git
Properly decode headers
This commit is contained in:
parent
18c77ed9c6
commit
fa316fd0b3
|
@ -475,6 +475,7 @@ public class MessageHelper {
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
header = new String(header.getBytes(StandardCharsets.ISO_8859_1));
|
header = new String(header.getBytes(StandardCharsets.ISO_8859_1));
|
||||||
|
header = decodeMime(header);
|
||||||
return InternetAddress.parseHeader(header, false);
|
return InternetAddress.parseHeader(header, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue