mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-07 23:16:37 +00:00
Assume application/pgp-encrypted on missing protocol
This commit is contained in:
parent
d3f4f29d0c
commit
861596e956
1 changed files with 1 additions and 1 deletions
|
@ -2384,7 +2384,7 @@ public class MessageHelper {
|
|||
} else if (part.isMimeType("multipart/encrypted")) {
|
||||
ContentType ct = new ContentType(part.getContentType());
|
||||
String protocol = ct.getParameter("protocol");
|
||||
if ("application/pgp-encrypted".equals(protocol)) {
|
||||
if ("application/pgp-encrypted".equals(protocol) || protocol == null) {
|
||||
Multipart multipart = (Multipart) part.getContent();
|
||||
if (multipart.getCount() == 2) {
|
||||
// Ignore header
|
||||
|
|
Loading…
Reference in a new issue