1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

Properly decode headers

This commit is contained in:
M66B 2019-08-20 20:22:40 +02:00
parent 18c77ed9c6
commit fa316fd0b3

View file

@ -475,6 +475,7 @@ public class MessageHelper {
return null;
header = new String(header.getBytes(StandardCharsets.ISO_8859_1));
header = decodeMime(header);
return InternetAddress.parseHeader(header, false);
}