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

Revert "Properly decode headers"

This reverts commit fa316fd0b3.
This commit is contained in:
M66B 2019-08-21 11:39:16 +02:00
parent 9e5280317f
commit b728eea4aa

View file

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