1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-01 12:08:46 +00:00

DMARC: skip reporting XML parse errors

This commit is contained in:
M66B 2024-01-10 08:33:59 +01:00
parent c003b31c39
commit 5b813d3423

View file

@ -154,7 +154,7 @@ public class ActivityDMARC extends ActivityBase {
if (ex instanceof NoStreamException)
((NoStreamException) ex).report(ActivityDMARC.this);
else
Log.unexpectedError(getSupportFragmentManager(), ex);
Log.unexpectedError(getSupportFragmentManager(), ex, !(ex instanceof XmlPullParserException));
grpReady.setVisibility(View.VISIBLE);
}
}.execute(this, args, "dmarc:decode");