DMARC: skip reporting XML parse errors

This commit is contained in:
M66B 2024-01-10 08:33:59 +01:00
parent c003b31c39
commit 5b813d3423
1 changed files with 1 additions and 1 deletions

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");