mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-07 20:34:07 +00:00
DMARC: skip reporting XML parse errors
This commit is contained in:
parent
c003b31c39
commit
5b813d3423
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ public class ActivityDMARC extends ActivityBase {
|
||||||
if (ex instanceof NoStreamException)
|
if (ex instanceof NoStreamException)
|
||||||
((NoStreamException) ex).report(ActivityDMARC.this);
|
((NoStreamException) ex).report(ActivityDMARC.this);
|
||||||
else
|
else
|
||||||
Log.unexpectedError(getSupportFragmentManager(), ex);
|
Log.unexpectedError(getSupportFragmentManager(), ex, !(ex instanceof XmlPullParserException));
|
||||||
grpReady.setVisibility(View.VISIBLE);
|
grpReady.setVisibility(View.VISIBLE);
|
||||||
}
|
}
|
||||||
}.execute(this, args, "dmarc:decode");
|
}.execute(this, args, "dmarc:decode");
|
||||||
|
|
Loading…
Add table
Reference in a new issue