mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 03:32:16 -05:00
ignore application/pgp-signature parts for display
This commit is contained in:
parent
0374dc9cb1
commit
e8c591e6be
@ -166,6 +166,8 @@ public class MessageExtractor {
|
|||||||
Html html = new Html(part);
|
Html html = new Html(part);
|
||||||
viewables.add(html);
|
viewables.add(html);
|
||||||
}
|
}
|
||||||
|
} else if (part.getMimeType().equalsIgnoreCase("application/pgp-signature")) {
|
||||||
|
// ignore this type explicitly
|
||||||
} else {
|
} else {
|
||||||
// Everything else is treated as attachment.
|
// Everything else is treated as attachment.
|
||||||
attachments.add(part);
|
attachments.add(part);
|
||||||
|
Loading…
Reference in New Issue
Block a user