1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-14 06:00:21 -05:00

Revert "ignore application/pgp-signature parts for display"

This reverts commit e8c591e6be.

Since crypto information is stored in annotations now rather than the
mime tree itself, this doesn't need to be handled any longer
This commit is contained in:
Vincent Breitmoser 2015-01-30 19:11:17 +01:00
parent 0241001c63
commit 146a79a176

View File

@ -166,8 +166,6 @@ public class MessageExtractor {
Html html = new Html(part);
viewables.add(html);
}
} else if (part.getMimeType().equalsIgnoreCase("application/pgp-signature")) {
// ignore this type explicitly
} else {
// Everything else is treated as attachment.
attachments.add(part);