1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-30 19:56:10 +00:00

EML debug

This commit is contained in:
M66B 2022-01-29 18:10:15 +01:00
parent d186d2099d
commit b2765393c1

View file

@ -431,7 +431,8 @@ public class ActivityEML extends ActivityBase {
.append(size > 0 ? Helper.humanReadableByteCount(size) : "?")
.append('\n');
if (!part.isMimeType("multipart/*")) {
if (BuildConfig.DEBUG &&
!part.isMimeType("multipart/*")) {
Object content = part.getContent();
if (content instanceof String) {
String text = (String) content;