1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 23:12:55 +00:00

Small fix

This commit is contained in:
M66B 2022-01-10 09:12:25 +01:00
parent debe78d215
commit a5cea2c270

View file

@ -3927,7 +3927,7 @@ class Core {
if (needsHeaders || needsBody)
Log.i(folder.name + " needs headers=" + needsHeaders + " body=" + needsBody);
List<Header> headers = (needsHeaders ? helper.getAllHeaders() : null);
String body = (needsBody ? helper.getMessageParts().getHtml(context) : null);
String body = (needsBody ? parts.getHtml(context) : null);
if (experiments && helper.isReport())
try {