1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 07:01:05 +00:00

Suppress "Failed to fetch headers"

This commit is contained in:
M66B 2019-09-19 16:55:36 +02:00
parent cf1039a5a9
commit 70cce65e61

View file

@ -1168,6 +1168,7 @@ public class MessageHelper {
cid = apart.part.getHeader("Content-ID"); cid = apart.part.getHeader("Content-ID");
} catch (MessagingException ex) { } catch (MessagingException ex) {
Log.w(ex); Log.w(ex);
if (!"Failed to fetch headers".equals(ex.getMessage()))
parts.warnings.add(Helper.formatThrowable(ex, false)); parts.warnings.add(Helper.formatThrowable(ex, false));
} }