Fixed decoding of subject

pull/157/head
M66B 5 years ago
parent 8fb7b47f10
commit f39d973b1f

@ -617,12 +617,11 @@ public class MessageHelper {
subject = MimeUtility.unfold(subject);
subject = new String(subject.getBytes(StandardCharsets.ISO_8859_1));
if (subject.startsWith("=?"))
try {
subject = MimeUtility.decodeText(subject);
} catch (UnsupportedEncodingException ex) {
Log.w(ex);
}
try {
subject = MimeUtility.decodeText(subject);
} catch (UnsupportedEncodingException ex) {
Log.w(ex);
}
subject = decodeMime(subject);

Loading…
Cancel
Save