mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Suppress "Failed to fetch headers"
This commit is contained in:
parent
cf1039a5a9
commit
70cce65e61
1 changed files with 2 additions and 1 deletions
|
@ -1168,7 +1168,8 @@ public class MessageHelper {
|
|||
cid = apart.part.getHeader("Content-ID");
|
||||
} catch (MessagingException ex) {
|
||||
Log.w(ex);
|
||||
parts.warnings.add(Helper.formatThrowable(ex, false));
|
||||
if (!"Failed to fetch headers".equals(ex.getMessage()))
|
||||
parts.warnings.add(Helper.formatThrowable(ex, false));
|
||||
}
|
||||
|
||||
apart.attachment = new EntityAttachment();
|
||||
|
|
Loading…
Reference in a new issue