mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 10:03:51 +02:00
Fixed protected header encoding
This commit is contained in:
@@ -2336,7 +2336,7 @@ public class MessageHelper {
|
||||
if ("v1".equals(ct.getParameter("protected-headers"))) {
|
||||
String[] subject = part.getHeader("subject");
|
||||
if (subject != null && subject.length != 0)
|
||||
parts.protected_subject = subject[0];
|
||||
parts.protected_subject = decodeMime(subject[0]);
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
|
||||
Reference in New Issue
Block a user