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:
parent
18c77ed9c6
commit
fa316fd0b3
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue