mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
EML debug
This commit is contained in:
parent
d186d2099d
commit
b2765393c1
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue