mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 06:20:26 +00:00
Filter exception
This commit is contained in:
parent
1d57cf7b6d
commit
eb8b2a49b6
1 changed files with 4 additions and 0 deletions
|
@ -27,6 +27,7 @@ import android.content.DialogInterface;
|
|||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.content.res.Configuration;
|
||||
import android.database.sqlite.SQLiteFullException;
|
||||
import android.graphics.Point;
|
||||
import android.net.ConnectivityManager;
|
||||
import android.net.Network;
|
||||
|
@ -752,6 +753,9 @@ public class Log {
|
|||
*/
|
||||
return false;
|
||||
|
||||
if (ex instanceof SQLiteFullException) // database or disk is full (code 13 SQLITE_FULL)
|
||||
return false;
|
||||
|
||||
if ("android.util.SuperNotCalledException".equals(ex.getClass().getName()))
|
||||
/*
|
||||
android.util.SuperNotCalledException: Activity {eu.faircode.email/eu.faircode.email.ActivityView} did not call through to super.onResume()
|
||||
|
|
Loading…
Reference in a new issue