mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Filter exception
This commit is contained in:
@@ -39,6 +39,7 @@ import android.os.DeadObjectException;
|
||||
import android.os.Debug;
|
||||
import android.os.PowerManager;
|
||||
import android.os.RemoteException;
|
||||
import android.os.TransactionTooLargeException;
|
||||
import android.text.TextUtils;
|
||||
import android.view.Display;
|
||||
import android.view.OrientationEventListener;
|
||||
@@ -598,6 +599,11 @@ public class Log {
|
||||
*/
|
||||
return false;
|
||||
|
||||
if (ex instanceof RuntimeException &&
|
||||
ex.getCause() instanceof TransactionTooLargeException)
|
||||
// Some Android versions (Samsung) send images as clip data
|
||||
return false;
|
||||
|
||||
if (ex instanceof RuntimeException &&
|
||||
ex.getMessage() != null &&
|
||||
(ex.getMessage().startsWith("Could not get application info") ||
|
||||
|
||||
Reference in New Issue
Block a user