mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Display decrypted/verified messages like text/plain messages
Nicely format the text instead of wrapping it in <pre> tags.
This commit is contained in:
parent
76f741f11f
commit
c0153a1636
@ -38,6 +38,7 @@ import com.fsck.k9.crypto.CryptoProvider;
|
||||
import com.fsck.k9.crypto.PgpData;
|
||||
import com.fsck.k9.helper.ClipboardManager;
|
||||
import com.fsck.k9.helper.Contacts;
|
||||
import com.fsck.k9.helper.HtmlConverter;
|
||||
import com.fsck.k9.helper.Utility;
|
||||
import com.fsck.k9.mail.*;
|
||||
import com.fsck.k9.mail.internet.MimeUtility;
|
||||
@ -533,11 +534,12 @@ public class SingleMessageView extends LinearLayout implements OnClickListener,
|
||||
String text = null;
|
||||
if (pgpData != null) {
|
||||
text = pgpData.getDecryptedData();
|
||||
if (text != null) {
|
||||
text = HtmlConverter.textToHtml(text, true);
|
||||
}
|
||||
}
|
||||
if (text != null) {
|
||||
text = "<html><body><pre>" + text + "</pre></body></html>";
|
||||
} else {
|
||||
// getTextForDisplay() always returns HTML-ified content.
|
||||
|
||||
if (text == null) {
|
||||
text = message.getTextForDisplay();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user