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:
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)
|
||||
((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");
|
||||
|
|
Loading…
Reference in a new issue